SimpleHenny

AuthorLinch
Submission date2020-01-01 07:18:18.567635
Rating6201
Matches played206
Win rate60.68

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

Source code:

import random
beats = {'R':'P', 'P':'S', 'S':'R'}
if not input:
  history = 'RPS'
history += input
output = beats[random.choice(history)]