cycle test

Authortest
Submission date2018-05-18 14:35:52.813830
Rating4370
Matches played277
Win rate43.32

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

Source code:

cycle = {"R": "P", "P": "S", "S": "R"}

if input == "":
    output = "R"
else:
    
    output = cycle[input]