I suspect this is just a misunderstanding on my part, but I want to check if what I am trying is not possible.
I have a list of lists. I want to delete elements that have a length of less than 20 items. I can get the following to work.
Select[meetingSet, Length[#] >= 20 &]
But I was surprised that
DeleteCases[meetingSet, Length[#] <20 &]
Just returns the original list.
Is it possible to make the pattern an anonymous function?
Cheers, Andy