Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
numpy.argmin solution in 3rd party category for The Fastest Horse by piter239
import numpy as np
def fastest_horse(horses: list) -> int:
winners = list(map(np.argmin, horses))
return 1 + max(winners, key=lambda x: winners.count(x))
April 27, 2020
Comments: