sadad

Authorasdad
Submission date2019-05-12 21:40:42.507453
Rating4503
Matches played246
Win rate45.93

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

Source code:

import random


class RandomPredictor():

    @staticmethod
    def predict():
        return random.choice(['R','P','S'])
    
    
model = RandomPredictor()
output = model.predict()