notSoRandom

AuthorWDIFTL
Submission date2011-06-09 20:16:06.265720
Rating2839
Matches played5489
Win rate22.21

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

Source code:

import random

game = ["R","P","S"]

if input=="":
  history = list()
  guess = list()
  output = random.choice(game)
  
else:
  history.append(input)
  count = [history.count("R"),history.count("P"),history.count("S")]
  
  i = -1
  try:
    while 1:
      i = count.index(min(count), i+1)
      guess.append(i)
  except ValueError:
    pass
  
  output = game[random.choice(guess)]