| Author | bob |
| Submission date | 2019-11-24 20:22:21.114261 |
| Rating | 4544 |
| Matches played | 209 |
| Win rate | 46.41 |
Use rpsrunner.py to play unranked matches on your computer.
import random
n=random.choice(["R","P","S"])
if n=="R":
output="P"
elif n=="P":
output="S"
else:
output="R"