-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathErrorSet.java
57 lines (36 loc) · 1.25 KB
/
ErrorSet.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package array_and_matrix;
/**
* @Author: Wenhang Chen
* @Description:集合 S 包含从1到 n 的整数。不幸的是,因为数据错误,导致集合里面某一个元素复制了成了集合里面的另外一个元素的值,导致集合丢失了一个整数并且有一个元素重复。
* <p>
* 给定一个数组 nums 代表了集合 S 发生错误后的结果。你的任务是首先寻找到重复出现的整数,再找到丢失的整数,将它们以数组的形式返回。
* <p>
* 示例 1:
* <p>
* 输入: nums = [1,2,2,4]
* 输出: [2,3]
* 注意:
* <p>
* 给定数组的长度范围是 [2, 10000]。
* 给定的数组是无序的。
* @Date: Created in 16:58 6/15/2020
* @Modified by:
*/
public class ErrorSet {
public int[] findErrorNums(int[] nums) {
if (nums == null || nums.length < 1)
return nums;
int[] res = new int[2];
boolean[] exist = new boolean[nums.length + 1];
for (int i = 0; i < nums.length; i++) {
if (exist[nums[i]])
res[0] = nums[i];
exist[nums[i]] = true;
}
for (int i = 1; i < exist.length; i++) {
if (!exist[i])
res[1] = i;
}
return res;
}
}