Skip to content

Instantly share code, notes, and snippets.

@aredington
Created February 7, 2012 18:03
Show Gist options
  • Save aredington/1761017 to your computer and use it in GitHub Desktop.
Save aredington/1761017 to your computer and use it in GitHub Desktop.
Briefer commatize
(defn commatize [n]
(apply str
(flatten
(butlast
(interleave
(reverse
(partition 3
3
()
(reverse (seq (str n)))))
(repeat ","))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment