Skip to content

Instantly share code, notes, and snippets.

@bgmarx
Created January 7, 2015 09:46
Show Gist options
  • Save bgmarx/5fbe09d76e0272f9a289 to your computer and use it in GitHub Desktop.
Save bgmarx/5fbe09d76e0272f9a289 to your computer and use it in GitHub Desktop.
(defn my-drop [n coll]
(if (or (empty? coll)
(zero? n))
coll
(my-drop (dec n) (rest coll))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment