dodo

Authorbob
Submission date2019-11-24 19:00:40.916981
Rating1679
Matches played213
Win rate16.9

Use rpsrunner.py to play unranked matches on your computer.

Source code:

if input=="":
        loses=0

elif input == "R" and output == "S":
	loses += 1
elif input == "P" and output == "R":
	loses += 1
elif input == "S" and output == "P":
	loses += 1

if loses <= 2 and loses >= 0:
        output="R"
elif loses <=4 and loses > 2:
        output="P"
elif loses <=6 and loses > 4:
        output="S"
loses=0