Skip to content

Commit 4920a28

Browse files
committed
Time: 1 ms (100.00%), Space: 44.3 MB (85.52%) - LeetHub
1 parent 6d88c1c commit 4920a28

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Solution {
2+
public int[] findErrorNums(int[] nums) {
3+
int[] arr = new int[nums.length];
4+
int[] result = new int[2];
5+
6+
for (int i : nums) {
7+
arr[i - 1]++;
8+
}
9+
10+
for (int i = 0; i < nums.length; i++) {
11+
if (arr[i] == 2) {
12+
result[0] = i + 1;
13+
}
14+
15+
if (arr[i] == 0) {
16+
result[1] = i + 1;
17+
}
18+
}
19+
20+
return result;
21+
}
22+
}

0 commit comments

Comments
 (0)