Author | WDIFTL |
Submission date | 2011-06-10 19:44:31.290572 |
Rating | 4326 |
Matches played | 5238 |
Win rate | 49.05 |
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]