You are viewing a single comment's thread. Return to all comments →
Solution From My Side
def hurdleRace(k, height): if(k>= max(height)): return 0 else: return abs(k - max(height))
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 →
Solution From My Side