Comp Thinking 3

Authorseb
Submission date2019-10-16 12:38:01.682613
Rating4323
Matches played220
Win rate40.45

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

Source code:

import random


def getNextMove(string):
    for i in range(len(string) - 1, 0, -1):
        temp = string[-i:]

        if string.find(temp) + i < len(string) and i + 1 < len(string):
            return string[i + 1]

    return ""


previous = input

if previous == "":
    pattern = "RPS"


def beat(choise):
    if choise == "R":
        return "P"
    elif choise == "P":
        return "S"
    else:
        return "R"


if previous != "":
    pattern += previous

nextMove = getNextMove(pattern[-50:])
if nextMove == "":
    output = beat(random.choice(pattern))
else:
    output = beat(nextMove)