DIY: Daily Temperatures
Understand how to approach the Daily Temperatures problem by implementing a function that returns the number of days to wait for a warmer temperature. This lesson guides you through analyzing the problem, designing the algorithm, and coding the solution in Scala, sharpening your coding interview skills.
We'll cover the following...
We'll cover the following...
Problem statement
You are given an array of integers, temperatures, which represents the daily temperatures. You have to return an array, days, such that days[i] is the number of days you have to wait after the ...