Created
October 15, 2018 16:03
-
-
Save waterlink/e2eaea3994806fa081125153e294f27d to your computer and use it in GitHub Desktop.
step - 15
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
return when (first to second) { | |
// classic rules | |
SCISSORS to PAPER, | |
PAPER to ROCK, | |
ROCK to SCISSORS -> FIRST_PLAYER | |
// additional modern rules | |
ROCK to LIZARD, | |
LIZARD to SPOCK, | |
SPOCK to SCISSORS, | |
SCISSORS to LIZARD, | |
LIZARD to PAPER, | |
PAPER to SPOCK, | |
SPOCK to ROCK -> FIRST_PLAYER | |
else -> SECOND_PLAYER | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment