Author | WDIFTL |
Submission date | 2011-06-09 16:52:41.640859 |
Rating | 2793 |
Matches played | 5348 |
Win rate | 23.41 |
Use rpsrunner.py to play unranked matches on your computer.
import random
game = ["P","R","S"]
input = "R"
inputInt = game.index(input)
output = game[(inputInt+random.randint(0,2))%2]