| Author | 007 |
| Submission date | 2013-10-01 21:09:26.092192 |
| Rating | 3130 |
| Matches played | 656 |
| Win rate | 29.57 |
Use rpsrunner.py to play unranked matches on your computer.
import random
r = random.uniform(0, 1)
if r < 0.25:
output = 'R'
elif r < .5:
output = 'S'
else:
output = 'P'