This is an easy one in Clojure, the only restriction is that you can't use map.
I did 3 versions to practice:
A recursive one:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns accumulate) | |
(defn accumulate [func coll] | |
(let [accumulate-rec | |
(fn [acc [first-elem & rest-elems]] | |
(if (nil? first-elem) | |
acc | |
(recur (conj acc (func first-elem)) | |
rest-elems)))] | |
(accumulate-rec [] coll))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns accumulate) | |
(defn accumulate [func coll] | |
(reduce #(conj %1 (func %2)) [] coll)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns accumulate) | |
(defn accumulate [func coll] | |
(for [x coll] (func x))) |
No comments:
Post a Comment