Author | strangepool |
Submission date | 2013-10-02 13:31:09.299013 |
Rating | 4062 |
Matches played | 643 |
Win rate | 39.97 |
Use rpsrunner.py to play unranked matches on your computer.
import random
if not input:
output = 'RPS'[random.randrange(3)]
else:
output = 'RPS'[('RPS'.index(input) + 1) % 3]