This question evaluates proficiency in array processing and the next-greater-element concept, measuring algorithmic reasoning about sequence traversal, comparisons, and managing time/space trade-offs.
You are given an array readings[] representing sensor values over consecutive days (e.g., temperatures).
For each day i, compute how many days you must wait until you see a strictly higher reading on a future day j > i. If there is no future day with a higher reading, output 0 for that day.
readings
of length
n
.
ans
of length
n
where
ans[i]
is the number of days until a higher reading occurs, or
0
if none exists.
readings = [30, 38, 30, 36, 35, 40, 28]
[1, 4, 1, 2, 1, 0, 0]
1 <= n <= 2e5
>
), not greater-or-equal.