Skip to content

Instantly share code, notes, and snippets.

@kartikshah
Created May 17, 2011 01:19
Show Gist options
  • Save kartikshah/975699 to your computer and use it in GitHub Desktop.
Save kartikshah/975699 to your computer and use it in GitHub Desktop.
4Clojure - 44
(defn rotate [n xs]
(let [cnt (count xs)
modn (mod n cnt)]
(flatten (list (take-last (- cnt modn) xs) (take modn xs)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment