Samuel

Authorrdococ
Submission date2015-03-29 12:31:26.405856
Rating4203
Matches played510
Win rate44.71

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

Source code:

import random
output = random.choice(["R", "S", "P"])
if input == "":
	history = []
	guess = ""
	x = 0
else:
	history = [input] + history
	x = 0
	while ((x + 1 < len(history) and (history[min(x, len(history) - 1)] != history[min(x + 1, len(history) - 1)]))):
		x += 1
	guess = history[min(x, len(history) - 1)]
if guess == "R":
	output = "P"
elif guess == "S":
	output = "R"
elif guess == "P":
	output = "S"