Last active
October 27, 2016 13:02
-
-
Save TBonnin/a057b4644f9779efbd0d6a33c55f0b64 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 english [n] (clojure.pprint/cl-format nil "~r" n)) | |
(dotimes [n 99] (let [w (english n)] (if (= 0 (compare w (apply str (sort w)))) (println w)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

;)