leetcode——327. 区间和的个数
Posted 欣姐姐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode——327. 区间和的个数相关的知识,希望对你有一定的参考价值。
超出时间了。。。
class Solution(object): def countRangeSum(self, nums, lower, upper): """ :type nums: List[int] :type lower: int :type upper: int :rtype: int """ i=0 n=0 while i<len(nums): j=i while j<len(nums): s=sum(nums[i:j+1]) if s>=lower and s<=upper: n+=1 j+=1 else: if s>upper: j+=1 while j<len(nums) and nums[j]>=0: j+=1 elif s<lower: j+=1 while j<len(nums) and nums[j]<=0: j+=1 i+=1 return n
以上是关于leetcode——327. 区间和的个数的主要内容,如果未能解决你的问题,请参考以下文章