Simple Test 2

AuthorInferno
Submission date2011-06-10 17:11:02.912688
Rating4233
Matches played5234
Win rate41.29

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

Source code:

l = {'R':'P', 'P':'S', 'S':'R'}
if input == "":
    output = "R"
else:
    output = l[input]