Skip to content

Instantly share code, notes, and snippets.

@brianium
Created June 23, 2016 17:08
Show Gist options
  • Save brianium/5f04ad45a3d5d2cbb8d10ca2104b13d7 to your computer and use it in GitHub Desktop.
Save brianium/5f04ad45a3d5d2cbb8d10ca2104b13d7 to your computer and use it in GitHub Desktop.
; roll your own nth function
; my super long version
(fn [coll n]
(loop [c coll count 0]
(if (= count n)
(first c)
(recur (next c) (inc count)))))
; some other dudes cooler version
#(first (drop %2 %1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment