classSolution(object): deftwoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ for i inrange(len(nums)): for j inrange(i+1,len(nums)): if nums[i]+nums[j]==target: return i,j
再来看看我们的新算法:
1 2 3 4 5 6 7 8
classSolution: deftwoSum(self, nums: List[int], target: int) -> List[int]: hashtable = dict() for i, num inenumerate(nums): if target - num in hashtable: return [hashtable[target - num], i] hashtable[nums[i]] = i return []
classSolution(object): defremoveElement(self, nums, val): """ :type nums: List[int] :type val: int :rtype: int """ k=0 for i inrange(len(nums)): if nums[i]!=val: nums[k]=nums[i] k+=1 return k
# Definition for a binary tree node. # class TreeNode(object): # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right classSolution(object): defgetMinimumDifference(self, root): """ :type root: Optional[TreeNode] :rtype: int """ res=[] self.getMidTreeArray(root,res) #现在res是一个递增的数组 min=abs(res[0]-res[1]) for i inrange(1,len(res)-1): tmp=abs(res[i]-res[i+1]) if tmp < min: min = tmp returnmin
classSolution(object): defmySqrt(self, x): """ :type x: int :rtype: int """ if x==0or x==1: return x returnself.AreaSearch(x,0,x) defAreaSearch(self,x,left,right): mid=(left+right)//2 if mid*mid<=x and (mid+1)*(mid+1)>x: return mid if mid*mid<x: returnself.AreaSearch(x,mid,right) else: returnself.AreaSearch(x,left,mid)
classSolution(object): defclimbStairs(self, n): """ :type n: int :rtype: int """ if n==1:return1 if n==2:return2 returnself.climbStairs(n-2)+self.climbStairs(n-1)
classSolution(object): defclimbStairs(self, n): """ :type n: int :rtype: int """ if n<4:return n result=[0,1,2,3] for i inrange(3,n): result.append(result[i]+result[i-1]) return result[n]
classSolution(object): defremoveDuplicates(self, s): """ :type s: str :rtype: str """ whileTrue: new_s = "" head = 0 while head < len(s): if head + 1 < len(s) and s[head] == s[head + 1]: head += 2 continue new_s += s[head] head += 1 if new_s == s: break s = new_s return s
classSolution(object): defremoveDuplicates(self, s): """ :type s: str :rtype: str """ new_s=[] for i in s: if new_s==[]: new_s.append(i) continue if new_s[-1]==i: new_s.pop() continue new_s.append(i) return"".join(new_s)
classSolution(object): defsingleNumber(self, nums): """ :type nums: List[int] :rtype: int """ result=nums[0] for i inrange(1,len(nums)): result=result^nums[i] return result
classSolution(object): defsumOfTheDigitsOfHarshadNumber(self, x): """ :type x: int :rtype: int """ s=str(x) sum=0 for i in s: sum +=int(i) returnsumif x%sum==0else -1
def__init__(self): """ Initialize your data structure here. """ self.pushs=[] self.pops=[]
defpush(self, x): """ Push element x to the back of queue. :type x: int :rtype: None """ self.pushs.append(x) #push压栈
defpop(self): """ Removes the element from in front of queue and returns that element. :rtype: int """ iflen(self.pops)==0: # 优先弹出pops栈栈顶元素,没有的话把push栈元素倒过去,push栈底会成为pop栈顶 for i inrange(len(self.pushs)): self.pops.append(self.pushs.pop()) returnself.pops.pop()
defpeek(self): """ Get the front element. :rtype: int """ top = self.pop() self.pops.append(top) #pop出来然后再return return top
defempty(self): """ Returns whether the queue is empty. :rtype: bool """ iflen(self.pushs)==0andlen(self.pops)==0: returnTrue else: returnFalse
# Your MyQueue object will be instantiated and called as such: # obj = MyQueue() # obj.push(x) # param_2 = obj.pop() # param_3 = obj.peek() # param_4 = obj.empty()
classSolution(object): defintersect(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ dic={} res=[] for i in nums1: if i in dic: dic[i]+=1 else: dic[i]=1 for j in nums2: if j in dic: if dic[j]>0: dic[j]-=1 res.append(j) return res
classSolution(object): deflongestPalindrome(self, s): """ :type s: str :rtype: int """ dic={} for i in s: if i in dic: dic[i]+=1 else: dic[i]=1 length=0 flag=True for key,value inenumerate(dic.values()): if value%2==1and flag: #第一个奇数直接加 flag=False length+=value else: length+=value-value%2#最近的偶数 return length
classSolution(object): deffib(self, n): """ :type n: int :rtype: int """ if n<=1:return n res=[0,1] for i inrange(2,n+1): res.append(res[i-2]+res[i-1]) return res[n]