Author | asd101 |
Submission date | 2019-04-16 11:23:11.789351 |
Rating | 5427 |
Matches played | 246 |
Win rate | 54.47 |
Use rpsrunner.py to play unranked matches on your computer.
import random
import operator
choices = ["R","P","S"]
win = {"R":"P","P":"S","S":"R"}
transition_matrix = {"RS":0,"RP":0,"RR":0,"PR":0,"PP":0,"PS":0,"SR":0,"SP":0,"SS":0}
def getSubset(dictionary, startKey):
rtn = {}
for item, value in dictionary.items():
if item[0] == startKey:
rtn[item] = value
return rtn
if len(input) < 2 :
output = choices[random.randint(0,2)]
else:
for (first, second) in zip(input, input[1:]):
transition_matrix[first + second] += 1
prediction = max((getSubset(transition_matrix,input[-1])).iteritems(), key=operator.itemgetter(1))[0][1]
output = win[prediction]