Skip to content

Instantly share code, notes, and snippets.

@bitops
Created January 2, 2012 01:02
Show Gist options
  • Save bitops/1548860 to your computer and use it in GitHub Desktop.
Save bitops/1548860 to your computer and use it in GitHub Desktop.
My implementation of a digit sum function in Clojure (using Java interop)
(defn digit-sum [val] (apply + (map #(Integer. (str %)) (str val))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment