Skip to content

Instantly share code, notes, and snippets.

@KKostya
Created October 21, 2018 19:56
Show Gist options
  • Save KKostya/e4a87c87a95f53be7d75916b35b33433 to your computer and use it in GitHub Desktop.
Save KKostya/e4a87c87a95f53be7d75916b35b33433 to your computer and use it in GitHub Desktop.
let random_then_stay_strategy : (door => choice => real) =
(door) => (choice) => Real.(
switch(door,choice){
| ( _ ,Stay) => 1.0 / 3.0
| ( _ ,Swap) => 0.0
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment