Skip to content

Instantly share code, notes, and snippets.

View msusmith's full-sized avatar

msusmith msusmith

View GitHub Profile
class Yatzy:
def __init__(self, d1, d2, d3, d4, d5):
self.dice = [d1, d2, d3, d4, d5]
@staticmethod
def chance(*dice):
return sum(dice)
@staticmethod
def yatzy(dice):