Q:
集合 S
包含从1到 n
的整数。不幸的是,因为数据错误,导致集合里面某一个元素复制了成了集合里面的另外一个元素的值,导致集合丢失了一个整数并且有一个元素重复。
给定一个数组 nums
代表了集合 S
发生错误后的结果。你的任务是首先寻找到重复出现的整数,再找到丢失的整数,将它们以数组的形式返回。
示例 1:
输入: nums = [1,2,2,4] 输出: [2,3]
链接:https://leetcode-cn.com/problems/set-mismatch/description/
思路:哈希表
代码:
class Solution(object):
def findErrorNums(self, nums):
"""
:type nums: List[int]
:rtype: List[int]
"""
count = [0]*(len(nums)+1)
for i in nums:
count[i] += 1
for j in range(1,len(nums)+1):
if count[j] == 2:
twice = j
if count[j] == 0:
never = j
return [twice,never]