We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
The Hurdle Race
The Hurdle Race
Sort by
recency
|
1436 Discussions
|
Please Login in order to post a comment
def hurdleRace(k, height): return (max(height) - k) if k < max(height) else 0
for python
Here is my c++ solution, you can watch the explanation here : https://youtu.be/HTbex2B-Yas
Here's my C++ solution:
This is a great problem for thinking through logic step by step. It all comes down to checking the tallest hurdle and seeing if the character can already clear it. If not, just calculate how many extra boosts are needed. Pretty straightforward but a fun way to break down constraints.
It kind of reminds me of video editing—sometimes you have all the tools you need, and other times you need that extra boost to make things work smoothly. Just like how some editing software gives you everything upfront while others require add-ons to get the job done efficiently.