Search
⌘K

Leetcode 1480. Running Sum of 1d Array

Compute the prefix (running) sum array where runningSum[i] = sum(nums[0..i]), i.e., each output element is the cumulative total up to that index. This is a straightforward one-pass O(n) accumulation over the input array.


Question Timeline

See when this question was last asked and where, including any notes left by other candidates.

Comments

Your account is free and you can post anonymously if you choose.