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