小黑广播操准备比赛,参加入职新人见面会,参加周三blueglass酸奶团跑,跑完继续喝喜茶今天晚上奥森仰山跑的leetcode之旅:剑指 Offer 57 - II. 和为s的连续正数序列
小黑代码classSolution:deffindContinuousSequence(self,target:int)->List[List[int]]:iftarget==1:return[]#定义双指针head=1tail=1#中间变量sum_=0#结果数组res=[]whiletailtarget:sum_-=headhead+=1ifsum_==target:res.append([if