Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Team Play by _Chico_
def max_score(cut, bend, pos):
result = sorted(zip(bend, cut), key=lambda value: int.__sub__(*value))
return sum(value[index < pos] for index, value in enumerate(result))
May 18, 2021
Comments: