Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Use race.index(min(race)) solution in Clear category for The Fastest Horse by heitor
def fastest_horse(horses):
wins = [0] * len(horses[0])
for race in horses:
wins[race.index(min(race))] += 1
return 1 + wins.index(max(wins))
April 27, 2018
Comments: