Tagged Questions
6
votes
1answer
126 views
Excessive use of let a problem in Clojure?
I have this set of functions - it works, but I'm concerned about the use of lets.
(defn- create-counts [coll]
"Computes how many times did each 'next state' come from a 'previous state'.
The ...