dodoss

Authorbob
Submission date2019-11-24 19:02:49.580709
Rating2603
Matches played209
Win rate25.36

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"
if loses==6:
        loses=0