All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0701_0800.s0739_daily_temperatures.Solution.swift Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
// #Medium #Top_100_Liked_Questions #Array #Stack #Monotonic_Stack #Programming_Skills_II_Day_6
// #Big_O_Time_O(n)_Space_O(n) #2024_07_03_Time_535_ms_(99.24%)_Space_26.9_MB_(19.32%)

class Solution {
    func dailyTemperatures(_ temperatures: [Int]) -> [Int] {
        var sol = [Int](repeating: 0, count: temperatures.count)
        sol[temperatures.count - 1] = 0
        for i in (0..




© 2015 - 2025 Weber Informatics LLC | Privacy Policy