Skip to content

Instantly share code, notes, and snippets.

@thanthese
Created May 3, 2012 00:12
Show Gist options
  • Save thanthese/2582099 to your computer and use it in GitHub Desktop.
Save thanthese/2582099 to your computer and use it in GitHub Desktop.
Better stats model
(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