moreda-first

Authormoreda
Submission date2019-05-28 11:57:19.299423
Rating1638
Matches played233
Win rate16.74

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

Source code:

import random
if input == "": # initialize variables for the first round
    output = random.choice(["R","P","S"])
elif input == "R":
	output = "S"
elif input == "P":
	output = "R"
elif input == "S":
	output = "P"