Created
February 15, 2015 18:44
-
-
Save RaymondKroon/cac5e6f4ebcfe04a3b45 to your computer and use it in GitHub Desktop.
Spiral
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 spiral [n] | |
(let [amounts (drop 1 (mapcat #(repeat 2 %) (range n 0 -1))) | |
directions (cycle [1 n -1 (- n)]) | |
steps (mapcat (fn [a d] (repeat a d)) amounts directions) | |
values (reductions + steps)] | |
values)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment