rps1

Authorilia10000
Submission date2012-08-22 18:54:16.660564
Rating3400
Matches played794
Win rate35.77

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

Source code:

import random
if input == "":
     previous=""
if previous =="":
      output = random.choice(["R","P","S"])
      previous = output
elif previous == "R":
      output = random.choice(["P","S"])
      previous = output
elif previous == "P":
      output = random.choice(["R","S"])
      previous = output
elif previous == "S":
      output = random.choice(["P","R"])
      previous = output