ddfffddf

Authorfdfdfdfd
Submission date2019-08-02 17:52:36.400626
Rating4400
Matches played224
Win rate45.98

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