Created
May 3, 2012 00:12
-
-
Save thanthese/2582099 to your computer and use it in GitHub Desktop.
Better stats model
This file contains 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
(let [iterations 10000.0 | |
deck (flatten (repeat 4 (range 13))) | |
decks (repeat iterations deck) | |
first-occurs-at (for [d decks] (-> d shuffle (.indexOf 0)))] | |
(/ (apply + first-occurs-at) | |
iterations)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment