此函数采用一组数字向量并返回它们的交集: (defn foo [& sets] (apply clojure.set/intersection (map #(set %) sets))) 例如。 user=> (foo [1 2 3] [3 4 5 1] [33 3 ...
確定! 回上一頁