Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Fastest Horse by brispol19
def fastest_horse(horses: list) -> int:
winners = [x.index(min(x)) for x in horses]
return max(set(winners), key = winners.count) + 1
Dec. 12, 2019