Author | asdad |
Submission date | 2019-05-12 21:40:42.507453 |
Rating | 4503 |
Matches played | 246 |
Win rate | 45.93 |
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()