Author | asdad |
Submission date | 2019-05-12 21:40:41.663292 |
Rating | 5069 |
Matches played | 241 |
Win rate | 49.38 |
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()