双指针,边界条件为 s < target 和 指针小于数组长度

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param nums int整型一维数组 
# @param target int整型 
# @return int整型
#
class Solution:
    def minSubarray(self , nums: List[int], target: int) -> int:
        # write code here
        l, r, n = 0, 0, len(nums)
        max_l = float("inf") 
        s = 0
        while l < n:
            while r < n and s < target:
                s += nums[r]
                r += 1
            if s >= target:
                max_l = min(max_l, r - l)
            s -= nums[l]
            l += 1
        return max_l if max_l != float("inf") else 0