刷题
文章平均质量分 69
大菠萝盖饭
机器人公司的码农
展开
-
数组中字数超过一半的数字
class Solution: def MoreThanHalfNum_Solution(self, numbers): # write code here zidian={} a=len(numbers) b=a//2 c=[] d=0 if numbers==[]: ...原创 2019-03-14 15:18:47 · 135 阅读 · 0 评论 -
数组中重复的数字
class Solution: # 这里要特别注意~找到任意重复的一个值并赋值到duplication[0] # 函数返回True/False def duplicate(self, numbers, duplication): # write code here zidian={} a=len(numbers) ...原创 2019-03-15 09:43:56 · 127 阅读 · 0 评论 -
归并排序解决小和问题
class Solution: def sum_solution(self, array): if array is None or len(array) < 1: return 0 return self.sumsort(array, 0, len(array) - 1) def sumsort(self, ar...原创 2019-03-12 10:04:14 · 155 阅读 · 0 评论 -
数组中只出现一次的数字
class Solution: # 返回[a,b] 其中ab是出现一次的两个数字 def FindNumsAppearOnce(self, array): # write code here zidian={} ans=[] b=[0 for i in range(len(array))] for i ...原创 2019-03-13 10:08:11 · 105 阅读 · 0 评论