antiran

Authorbob
Submission date2019-11-24 20:22:21.114261
Rating4544
Matches played209
Win rate46.41

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

Source code:

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