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 rybld2
def fastest_horse(horses: list) -> int:
from collections import Counter
res=[h.index(min(h))+1 for h in horses]
c=Counter(res)
return c.most_common(1)[0][0]
Aug. 1, 2021
Comments: