1480. Running Sum of 1d Array (Easy)

求动态和,也就是前缀和。让你熟悉一下什么是前缀和。

给定一个数组,根据下标遍历,将每个位置 n 的值更新为原数组位置 0n 的和。

连续几天 Hard 题目突然蹦出来一道 Easy 还有点不适应,提交之前都在想肯定没这么简单,有那里没考虑到,结果就 Accepted 了。

简直 leetcode pstd。

class Solution:
def runningSum(self, nums: List[int]) -> List[int]:
for i in range(1, len(nums)):
nums[i] += nums[i - 1]
return nums