sadad

Authorasdad
Submission date2019-05-12 21:40:41.663292
Rating5069
Matches played241
Win rate49.38

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()