notSoRandomv2

AuthorWDIFTL
Submission date2011-06-09 20:36:09.619031
Rating3419
Matches played5158
Win rate33.85

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(max(count), i+1)
      guess.append(i)
  except ValueError:
    pass
  
  output = game[(random.choice(guess)+1)%3]