| Author | fdfdfdfd |
| Submission date | 2019-08-02 17:52:36.400626 |
| Rating | 4400 |
| Matches played | 224 |
| Win rate | 45.98 |
Use rpsrunner.py to play unranked matches on your computer.
import random
class RandomPredictor():
@staticmethod
def predict():
return random.choice(['R','P','S'])
model = RandomPredictor()
output = model.predict()