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 Wartem
def fastest_horse(races: list) -> int:
races = [race.index(min(race)) + 1 for race in races]
return max(set(races), key= races.count)
Sept. 27, 2022