You are viewing a single comment's thread. Return to all comments →
def hurdleRace(k, height): max1 = max(height) if max1-k < 0: return 0 else: return max1-k
Seems like cookies are disabled on this browser, please enable them to open this website
The Hurdle Race
You are viewing a single comment's thread. Return to all comments →
def hurdleRace(k, height): max1 = max(height) if max1-k < 0: return 0 else: return max1-k