Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Set with key=count solution in Speedy category for The Fastest Horse by vit.aborigen
def fastest_horse(horses: list) -> int:
winner = [race.index(min(race)) + 1 for race in horses]
return max(set(winner), key=winner.count)
Oct. 13, 2018