You are viewing a single comment's thread. Return to all comments →
Same solution in Golang
func arrayManipulation(n int32, qs [][]int32) int64 { a := make([]int64, n + 1) qLen := len(qs) for i:=0; i<qLen; i++ { p := int(qs[i][0]) q := qs[i][1] sum := int64(qs[i][2]) a[p] += sum if((q + 1) <= n) { a[q + 1] -= sum } } var x, max int64 = 0, 0 for i:=1; i<=int(n); i++ { x += a[i] if max < x { max = x } } return max }
Clever solution!
Seems like cookies are disabled on this browser, please enable them to open this website
Array Manipulation
You are viewing a single comment's thread. Return to all comments →
Same solution in Golang
Clever solution!