(ns word-count) (defn- clean [string] (clojure.string/replace string #"\W+" " ")) (defn- words [string] (clojure.string/split string ...
確定! 回上一頁