Let's say you have a list of lists and that you wish to delete only those lists with the length zero, something like:
a={{...},{...},{...},...}
DeleteCases[a, ?]
What should the ? be?
|
Let's say you have a list of lists and that you wish to delete only those lists with the length zero, something like:
What should the |
|||||
|
|
may be this:
|
|||||||||
|
Here's the solution that Nasser provided:
Note that it deletes all objects of length zero at level 1. If you only want to delete lists of length zero (i.e.
or if you want to delete them from all levels then use
|
|||||||||||||||
|