首页 > 其他 > 详细

【LeetCode】【Array】Running Sum of 1d Array

时间:2020-07-01 00:24:49      阅读:63      评论:0      收藏:0      [点我收藏+]

题目:

给定一个array nums,返回新array,每个元素为前n个元素之和(runningSum[i] = sum(nums[0]…nums[i]))。

Example 1:

Input: nums = [1,2,3,4]
Output: [1,3,6,10]
Explanation: Running sum is obtained as follows: [1, 1+2, 1+2+3, 1+2+3+4].

Example 2:

Input: nums = [1,1,1,1,1]
Output: [1,2,3,4,5]
Explanation: Running sum is obtained as follows: [1, 1+1, 1+1+1, 1+1+1+1, 1+1+1+1+1].

Example 3:

Input: nums = [3,1,2,10,1]
Output: [3,4,6,16,17]

 

Constraints:

  • 1 <= nums.length <= 1000
  • -10^6 <= nums[i] <= 10^6

【解法】

class Solution:
    def runningSum(self, nums: List[int]) -> List[int]:
        Sum = []
        temp = 0
        for i in nums:
            temp += i
            Sum.append(temp)
        return Sum
            
Runtime: 40 ms, faster than 74.57% of Python3 online submissions for Running Sum of 1d Array.
Memory Usage: 14 MB, less than 33.33% of Python3 online submissions for Running Sum of 1d Array.
【解法二】
找外援!(函数)
class Solution:
    def runningSum(self, nums: List[int]) -> List[int]:
        from itertools import accumulate
        return accumulate(nums)
Runtime: 40 ms, faster than 74.57% of Python3 online submissions for Running Sum of 1d Array.
Memory Usage: 14 MB, less than 100.00% of Python3 online submissions for Running Sum of 1d Array.

【解法三】

在原来的array里改的。

class Solution:
    def runningSum(self, nums: List[int]) -> List[int]:
        i = 1
        while i<len(nums):
            nums[i] += nums[i-1]
            i += 1
        return nums
Runtime: 68 ms, faster than 16.66% of Python3 online submissions for Running Sum of 1d Array.
Memory Usage: 14.2 MB, less than 33.33% of Python3 online submissions for Running Sum of 1d Array.

 

【LeetCode】【Array】Running Sum of 1d Array

原文:https://www.cnblogs.com/jialinliu/p/13216556.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!