Clojure 中实现重复的惯用方式是什么?以下:
(duplicates? '( 1 2 3 2)) ; true
做一个:
(not (= (count coll) (count (distinct coll)))
工作量比要求的要多。
Clojure 中实现重复的惯用方式是什么?以下:
(duplicates? '( 1 2 3 2)) ; true
做一个:
(not (= (count coll) (count (distinct coll)))
工作量比要求的要多。