Skip to content

Instantly share code, notes, and snippets.

@tce
Created February 2, 2012 17:01
Show Gist options
  • Save tce/1724571 to your computer and use it in GitHub Desktop.
Save tce/1724571 to your computer and use it in GitHub Desktop.
Clojure frequencies
;; from http://twoguysarguing.wordpress.com/2010/07/26/7-rules-for-writing-clojure-programs/
(reduce #(assoc %1 %2 (inc (get %1 %2 0))) {} “aabcdcdcd”)
=> {\d 3, \c 3, \b 1, \a 2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment