英文原题
Given an array nums. We define a running sum of an array as runningSum[i] = sum(nums[0]…nums[i]).
Return the running sum of nums.
Example
1 | Input: nums = [1,2,3,4] |
分析
今天是一道Easy的题,这题用的算是一个挺常用的算法,很多涉及到累加的题目都会用到。思路是,第i个累加的结果为nums[i]加上第i-1个累加的结果,即 res[i] = res[i-1] + nums[i]。
python 代码
1 | class Solution: |