数组中重复的数字python

在一个长度为n的数组里的所有数字都在0到n-1的范围内。 数组中某些数字是重复的,但不知道有几个数字是重复的。也不知道每个数字重复几次。请找出数组中任意一个重复的数字。 例如,如果输入长度为7的数组{2,3,1,0,2,5,3},那么对应的输出是第一个重复的数字2。

思路:我们新建一个字典,我们循环遍历数组,当数组中元素不在字典中的时候,我们给字典该位置处至1,一旦循环过程中,元素存在字典中,我们就可以输出结果了

# -*- coding:utf-8 -*-
class Solution:
    # 这里要特别注意~找到任意重复的一个值并赋值到duplication[0]
    # 函数返回True/False
    def duplicate(self, numbers, duplication):
        # write code here
            dic={}
            for i in range(0,len(numbers)):
                if numbers[i] not in dict:
                    dict[numbers[i]]=1
                else:
                    duplication[0]=numbers[i]
                    return True
            return False

  

猜你喜欢

转载自www.cnblogs.com/cong3Z/p/12909649.html
今日推荐