is_yahtzee, is_grote_straat

Sign in to test your solution.
# voeg zelf type-hinting toe def is_yahtzee(stenen): # TODO def is_grote_straat(stenen): # TODO # Zet onderstaande regel uit commentaar om lokaal te testen # print(is_yahtzee([5, 4, 3, 5, 4])) # print(is_yahtzee([4, 4, 4, 4, 4])) # print(is_grote_straat([1, 3, 3, 4, 1])) # print(is_grote_straat([1, 5, 4, 2, 3]))

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.

Test case being debugged