Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner: don't import and hold on your horses solution in Clear category for The Fastest Horse by przemyslaw.daniel
def fastest_horse(horses):
result = [x.index(min(x)) for x in horses]
return max(result, key=result.count)+1
April 8, 2018