Test1

AuthorWDIFTL
Submission date2011-06-09 16:52:41.640859
Rating2793
Matches played5348
Win rate23.41

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

Source code:

import random

game = ["P","R","S"]

input = "R"
inputInt = game.index(input)
output = game[(inputInt+random.randint(0,2))%2]