Daily Temperatures

Try to solve the Daily Temperatures problem.

Statement

Given an array of integers, temperatures, that represents daily temperatures, return an array, output, where each element, output[i], indicates the number of days you need to wait after the ithi^{th} day to experience a warmer temperature if there is no future day with a higher temperature, set output[i] to 0.

Constraints:

  • 1≤1 \leq temperatures.length ≤103 \leq 10^3

  • 30≤30 \leq temperatures[i] ≤100\leq 100

Examples

Level up your interview prep. Join Educative to access 80+ hands-on prep courses.