Author | dont judge me |
Submission date | 2011-06-10 19:43:20.978272 |
Rating | 5051 |
Matches played | 5274 |
Win rate | 48.81 |
Use rpsrunner.py to play unranked matches on your computer.
import random
game = ["P","R","S"]
guess = random.randint(0,2)
#wait.... what if they expect that?
guess = guess+1
if guess > 2:
guess = 0
output = game[guess]