标签:个数 object pre 分析 not def ber 直接 ict
在一个长度为 n 的数组 nums 里的所有数字都在 0~n-1 的范围内。数组中某些数字是重复的,但不知道有几个数字重复了,也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。
题目很简单,但也出现在华为一面中,直接map存储,有重复的直接返回。
class Solution(object):
def findRepeatNumber(self, nums):
dicts = {}
for i in nums:
if i not in dicts:
dicts[i] = 1
else:
return i
标签:个数 object pre 分析 not def ber 直接 ict
原文地址:https://www.cnblogs.com/isshpan/p/12563275.html