Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
mode solution in Clear category for The Fastest Horse by flpo
from operator import itemgetter
from statistics import mode
def fastest_horse(matches):
return mode(min(enumerate(match, 1), key=itemgetter(1))[0] for match in matches)
March 13, 2018
Comments: