I want to DeleteDuplicates from a list of lists keeping the sublist structure intact.
E.g.
{{1, 7, 8}, {4, 3}, {4, 1, 9}, {9, 2}}
becomes
{{1, 7, 8}, {4, 3}, {9}, {2}}
This is the extent of nesting, and empty sublists are ok.
|
I want to DeleteDuplicates from a list of lists keeping the sublist structure intact. E.g.
becomes
This is the extent of nesting, and empty sublists are ok. |
||||
|
|
This is a classic trick:
To understand how it works, consider what happens when So, the first time To summarize, what the function does is: the first time it sees an element, it replaces the element with itself (leaves it alone). The second time it sees the same element, it removes it. I mapped this function at "level 2", so it will act only on the elements of sublists. |
|||||||||||
|
|
You can use
|
|||
|
|
It's not elegant but it gets the job done:
|
||||
|
|