Created
October 5, 2016 07:51
-
-
Save carld/6619f604cd79d78e07124d28455b90e2 to your computer and use it in GitHub Desktop.
shuffle list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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