(defn domap2 [f coll] (dotimes [i (count coll)] (f (nth coll i)))) 但它只接受一个集合。这接受任意集合: (defn domap3 [f & colls] (dotimes [i (apply min (map ...
確定! 回上一頁