Greetings All,
Im interested in the function remove-dup. As I understand this function only works for duplicates in simple lists such as (a b b c d). Is it possible to remove duplicate elements from a list with nested lists (sublists) inside it? To be clear:
Example: A nested lists as follows:
((0 1) (0 2) (0 1) (0 3))
should have one of the repeated (0 1) sublists removed, resulting in:
((0 1) (0 2) (0 3))
Perhaps this is a simple task. If so, apologies! Any suggestions would be gladly received.
Thanks in advance,
Krhes.