(应该减8min 问就是洗澡去了 38开始做的)
四个字:浅尝辄止
因为只能浅尝辄止
第一题:
思路 两个遍历
class Solution(object): def countPairs(self, nums, target): """ :type nums: List[int] :type target: int :rtype: int """ n=len(nums) ans=0 for i in range(0,n-1): for j in range(i+1,n): if nums[i]+nums[j]<target: ans=ans+1 return ans
第一遍WA了
标签:int,str2,str1,len,111,双周,type,self From: https://www.cnblogs.com/LYoungH/p/17643456.html