Author | trollathon |
Submission date | 2013-11-14 18:51:37.320131 |
Rating | 4485 |
Matches played | 641 |
Win rate | 45.4 |
Use rpsrunner.py to play unranked matches on your computer.
if input == "":
import random
order = 3
history = ""
output = random.choice(["R", "P", "S"])
else:
history += input
if len(history) >= order:
search = history[-order:]
mplace = history.rfind(search)
predict = history[mplace+1]
if predict == "R":
output = "P"
elif predict == "P":
output = "S"
elif predict == "S":
output = "R"
else:
output = random.choice(["R","P","S"])
else:
output = random.choice(["R","P","S"])