739. Daily Temperatures
Input: temperatures = [73,74,75,71,69,72,76,73]
Output: [1,1,4,2,1,1,0,0]Input: temperatures = [30,40,50,60]
Output: [1,1,1,0]Input: temperatures = [30,60,90]
Output: [1,1,0]Input: temperatures = [73,74,75,71,69,72,76,73]
index = [0, 1, 2, 3, 4, 5, 6, 7]
Output: [1, 1, 4, 2, 1, 1, 0, 0]Last updated