Skip to content

Instantly share code, notes, and snippets.

@fffej
Created July 19, 2009 17:44
Show Gist options
  • Save fffej/149979 to your computer and use it in GitHub Desktop.
Save fffej/149979 to your computer and use it in GitHub Desktop.
(defn histogram
[filename]
(reduce
(fn [accum x]
(let [h (Math/floor (/ x 10))]
(assoc accum h (inc (get accum h 0)))))
{}
(take-nth 2 (drop 1 (read-lines filename)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment