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
|
1446 Discussions
|
Please Login in order to post a comment
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, much like an extreme introvert navigating social situations, can already clear it. If not, just calculate how many extra boosts are needed. Pretty straightforward but a fun way to break down constraints.
import java.util.*;
public class Solution {
}
int biggestHurdle = height.Max();
return biggestHurdle > k ? biggestHurdle - k : 0;
Rust: