| Author | Andrew D |
| Submission date | 2011-12-11 23:26:45.296385 |
| Rating | 4911 |
| Matches played | 854 |
| Win rate | 50.12 |
Use rpsrunner.py to play unranked matches on your computer.
import random
while True:
x = ["R","P","S"]
r = random.randint(0,2)
random.shuffle(x)
output = x[r]
break