3 lines
86 B
Racket
3 lines
86 B
Racket
|
|
(define (unique/hash lst)
|
||
|
|
(hash-keys (for/hash ([x (in-list lst)]) (values x #t))))
|