Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ray1729
Created November 23, 2010 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ray1729/712054 to your computer and use it in GitHub Desktop.
Save ray1729/712054 to your computer and use it in GitHub Desktop.
Pair up names for Secret Santa
(defn secret-santa
[names]
(let [s (shuffle names)]
(partition 2 1 (cons (last s) s))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment