【Clojure】我的第一段clojure...泪目~~~

来源:互联网 发布:黄梅话的软件 编辑:程序博客网 时间:2024/05/06 08:50
(require '[clojure.string :as str-tools])(defn count-unique-words  [strings]  (let [x (apply conj #{} (str-tools/split strings #"\s+"))]     (count x)))(count-unique-words "1 2 3 4 4           6")

0 0
原创粉丝点击