1.两个循环 class Solution: def twoSum(self, nums, target): n=len(nums) for i in range(n): for j in range(i+1,n): if (nums[j] == target - nums[i]): return i,j break else: continue 编译通过但耗时太久 2.一个循环 直接看下相加是target数在不在列表中 class Solution: def twoSum(self, nums…
18.1 Write a function that adds two numbers. You should not use + or any arithmetic operators. 这道题让我们实现两数相加,但是不能用加号或者其他什么数学运算符号,那么我们只能回归计算机运算的本质,位操作Bit Manipulation,我们在做加法运算的时候,每位相加之后可能会有进位Carry产生,然后在下一位计算时需要加上进位一起运算,那么我们能不能将两部分拆开呢,我们来看一个例子759+674 1.…