Skip to content

Instantly share code, notes, and snippets.

@KKostya
Last active October 21, 2018 19:14
Show Gist options
  • Save KKostya/bd05fc502f404a468b1488df51219211 to your computer and use it in GitHub Desktop.
Save KKostya/bd05fc502f404a468b1488df51219211 to your computer and use it in GitHub Desktop.
let reward = (scenario) =>
if( scenario.prize == scenario.first_guess ) {
if(scenario.choice == Stay) prize else 0.0;
} else {
if(scenario.choice == Swap) prize else 0.0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment