Created
May 5, 2012 09:37
-
-
Save yuanmai/2601197 to your computer and use it in GitHub Desktop.
sort perf
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
(def long-list (into (repeat 10000 0) [9 9 9 9 9])) | |
(dotimes [_ 10] | |
(time | |
(dotimes [_ 1000] | |
(sort long-list) | |
))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment