1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/swift/daily-temperatures.swift

18 lines
447 B
Swift
Raw Permalink Normal View History

class Solution {
func dailyTemperatures(_ temperatures: [Int]) -> [Int] {
var result = [Int](repeating: 0, count: temperatures.count)
var st: [Int] = []
for (i, t) in temperatures.enumerated() {
while !st.isEmpty && temperatures[st.last!] < t {
result[st.last!] = i - st.last!
st.removeLast()
}
st.append(i)
}
return result
}
}