Search found 2 matches

by xvn
Sat Dec 07, 2013 12:10 pm
Forum: Common Lisp
Topic: remove-duplicates and if
Replies: 2
Views: 6054

Re: remove-duplicates and if

Perfect, that's exactly what I was looking for! Thanks!
by xvn
Thu Dec 05, 2013 2:06 pm
Forum: Common Lisp
Topic: remove-duplicates and if
Replies: 2
Views: 6054

remove-duplicates and if

Hi, currently I'm facing the following problem and I would be very glad, if anyone could help: from the following list ((a b c) (a b c) (a b) (a b) (a) (a)) I want to remove all duplicates, except (a b c). The result should be the list ((a b c) (a b c) (a b) (a)). As this function should operate on ...