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 mlahor
def fastest_horse(races: list) -> int:
no_races_won=[0]*len(races[0])
for race in races:
no_races_won[race.index(min(race))]+=1
return no_races_won.index(max(no_races_won))+1
Oct. 10, 2019