Author | 24223542 |
Submission date | 2018-03-08 19:54:46.358510 |
Rating | 2832 |
Matches played | 307 |
Win rate | 27.36 |
Use rpsrunner.py to play unranked matches on your computer.
#Counter and human move list setup
if input == "":
i = 0
moveRec = []
else:
i += 1
moveRec.append(input)
#Set up a string arrray to allow translation between numbers and moves
name = ["R", "S", "P"]
#First 3 computer moves
initMove = ["S","P","S"]
#Check to see if you're in first 3 moves
if i < 3:
output = initMove[i]
if i >= 3:
output = moveRec[i-3]
#TODO: Create a 3-cycle long player move list, record frequency of cycles, set up ouput for the cycle, set up "win-flip" architecture