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 gear
from collections import Counter
def fastest_horse(races: list) -> int:
wins = Counter()
for race in races:
wins[race.index(min(race))] += 1
return max(wins, key=wins.get) + 1
Jan. 29, 2019
Comments: