Login and get codingComplete the two functions below:
calculate_score
takes a list of dice rollscores
and returns the total score only taking into account scores of>= MIN_SCORE
. If scores contains invalid data (!= DICE_VALUES
) raise aValueError
.get_winner
uses thiscalculate_score
helper to calculate the winning player from a list ofPlayer namedtuples
. However if the players passed in are not having the same number of scores (e.g. all have 4 scores) you should raise aValueError
too.See the
docstring
s andpytest
code for more info. Keep calm and code in Python, happy Cyber Monday!
Will you be the 133rd person to crack this Bite?
Resolution time: ~31 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 1.67 on a 1-10 difficulty scale.
» You can do it! 😌