Implement `dailyTemperatures(temps)` returning, for each day, how many days until a warmer temperature (0 if none), using a monotonic stack.
+ 1 hidden test run on Submit.
A monotonic decreasing stack of indices resolves each waiting day when a warmer temperature appears, in O(n) time.
Run your code to see results.