数组中重复的数字

###题目

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

解题思路

使用字典。

代码实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- coding:utf-8 -*-
class Solution:
# 这里要特别注意~找到任意重复的一个值并赋值到duplication[0]
# 函数返回True/False
def duplicate(self, numbers, duplication):
# write code here
if len(numbers) == 0:
return False
# 创建字典并赋值
d = dict.fromkeys(range(0, len(numbers)), 0)
for i in range(0, len(numbers)):
d[numbers[i]] = d[numbers[i]] + 1
for key in d:
if d[key] > 1:
duplication[0] = key
return True
return False