Skip to content

Instantly share code, notes, and snippets.

@duncanmak
Created October 1, 2010 05:33
Show Gist options
  • Select an option

  • Save duncanmak/605791 to your computer and use it in GitHub Desktop.

Select an option

Save duncanmak/605791 to your computer and use it in GitHub Desktop.
(defn rotations [s]
(map #(take (count s) (drop % (cycle s)))
(range (count s)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment