Created
January 15, 2019 22:59
-
-
Save marcomorain/4d56cbc0605e01fe8b97788d4cba62e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn anglo [num] | |
(apply str | |
(reverse | |
(flatten | |
(interpose "," | |
(partition 3 3 (repeat "") | |
(reverse (str num)))))))) | |
(anglo "12345678900") => "12,345,678,900" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment