Hello,
It seems to be an issue with the test that I can't pass.
My return is a tuple (53, 16, 31) with a sum = 100. the test seems to add only the two first numbers.
I found this in the local test in line 142:
self.assertEqual(result[0] + result[1], 100, f'When calling {code} sum of the wins must be 100, now the return value was {result}')
Doesnt miss +result[2] ?
thank you