# 코딩 문제 관련/파이썬
[HackerRank-python] The Hurdle Race
Hwiyong Jo
2022. 7. 14. 22:51
def hurdleRace(k, height):
# Write your code here
return 0 if max(height) < k else max(height) - k