Author | lamma |
Submission date | 2013-03-14 11:30:07.423375 |
Rating | 5816 |
Matches played | 732 |
Win rate | 53.42 |
Use rpsrunner.py to play unranked matches on your computer.
import random
plays = ["R","P","S"]
counter = {"R":"P", "P":"S", "S":"R"}
if input == "":
round = 0
hist = []
output = "R"
else:
if round<10:
hist.append(input)
else:
hist[round % 10] = input
guess = random.choice(hist)
output = counter[guess]
round += 1