1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/swift/online-stock-span.swift
Matej Focko c02a481db2
swift: add «901. Online Stock Span»
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-06-02 11:23:53 +02:00

23 lines
458 B
Swift

class StockSpanner {
private var st: [(Int, Int)] = []
init() {}
func next(_ price: Int) -> Int {
var span = 1
while !st.isEmpty && st.last!.0 <= price {
span += st.last!.1
st.removeLast()
}
st.append((price, span))
return span
}
}
/**
* Your StockSpanner object will be instantiated and called as such:
* let obj = StockSpanner()
* let ret_1: Int = obj.next(price)
*/