lc-go/solutions/14/q1475/solution.go
2026-02-01 14:48:00 +09:00

18 lines
327 B
Go

package q1475
func finalPrices(prices []int) []int {
st := make([]int, 0, 1024)
for i := len(prices) - 1; i >= 0; i-- {
p := prices[i]
for ; len(st) > 0 && st[len(st)-1] > p; st = st[:len(st)-1] {
}
if len(st) > 0 {
prices[i] = p - st[len(st)-1]
}
st = append(st, p)
}
return prices
}
var _ = finalPrices