RosettaCodeData/Task/Remove-duplicate-elements/Racket/remove-duplicate-elements-1.rkt

3 lines
85 B
Racket
Raw Permalink Normal View History

2013-06-05 21:47:54 +00:00
-> (remove-duplicates '(2 1 3 2.0 a 4 5 b 4 3 a 7 1 3 x 2))
'(2 1 3 2.0 a 4 5 b 7 x)