(defn rotations [a-seq] (map concat (tails a-seq) (inits a-seq))) ... (mapcat f coll) is an abbreviation for (apply concat (map f coll)) . (fn [[x & xs]] .
確定! 回上一頁