Skip to content

Instantly share code, notes, and snippets.

@weejulius
Created May 3, 2013 04:29
Show Gist options
  • Save weejulius/5507212 to your computer and use it in GitHub Desktop.
Save weejulius/5507212 to your computer and use it in GitHub Desktop.
;;http://www.4clojure.com/problem/21
#(loop [index 0 col %1]
(if (< index %2)
(recur (inc index) (next col))
(first col)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment