Skip to content

Instantly share code, notes, and snippets.

@carld
Created October 5, 2016 07:51
Show Gist options
  • Save carld/6619f604cd79d78e07124d28455b90e2 to your computer and use it in GitHub Desktop.
Save carld/6619f604cd79d78e07124d28455b90e2 to your computer and use it in GitHub Desktop.
shuffle list
(define (shuffle deck)
(sort (lambda (x y) (even? (random 2))) deck))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment