This file contains hidden or 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
;; http://johnj.com/from-elegance-to-speed.html | |
(def times (iterate #(+ % (rand-int 1000)) 0)) | |
(def times-v (into [] (take 1e6) (iterate #(+ % (rand-int 1000)) 0))) | |
(defn smt-8 [times] | |
(->> times | |
(partition 8 1) | |
(map (juxt identity |