Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3 lines 122 symbols solution in 3rd party category for The Fastest Horse by CDG.Axel
import numpy, statistics as st
def fastest_horse(horses: list) -> int:
return 1 + st.mode(map(numpy.argmin, horses))
March 16, 2023
Comments: