shark<ocilater>

Authorundermite
Submission date2019-11-24 19:04:50.404275
Rating2215
Matches played206
Win rate22.82

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