Author | zachpot |
Submission date | 2013-03-24 16:30:43.991996 |
Rating | 2968 |
Matches played | 693 |
Win rate | 27.71 |
Use rpsrunner.py to play unranked matches on your computer.
import random
if input == "":
round = 0
if round < 333:
output = random.choice(["R","P"])
elif round < 666:
output = random.choice(["R","S"])
else:
output = random.choice(["P","S"])
round += 1