首页 > 其他 > 详细

LeetCode #1588. Sum of All Odd Length Subarrays

时间:2020-12-02 17:34:09      阅读:50      评论:0      收藏:0      [点我收藏+]

题目

1588. Sum of All Odd Length Subarrays


解题方法

设置子数组长度初始为1,返回值为0,当子数组长度不大于arr长度时,遍历arr,在其中选定范围用sum求和,每次遍历结束都把子数组长度+2,最后返回总和rat。
时间复杂度:不会算,速度还可以 60 ms, faster than 68.58%
空间复杂度:O(1)


代码

class Solution:
    def sumOddLengthSubarrays(self, arr: List[int]) -> int:
        subarraylen = 1
        rat = 0
        while len(arr) >= subarraylen:
            for i in range(0, len(arr) - subarraylen + 1):
               rat += sum(arr[i:i + subarraylen])
            subarraylen += 2
        return rat

LeetCode #1588. Sum of All Odd Length Subarrays

原文:https://www.cnblogs.com/RatsCommander/p/14074758.html

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