-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathFindMissignAndRpeating.java
53 lines (43 loc) · 1.48 KB
/
FindMissignAndRpeating.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Given an unsorted array Arr of size N of positive integers. One number 'A' from set {1, 2, …N} is missing and one number 'B' occurs twice in array. Find these two numbers.
// Example 1:
// Input:
// N = 2
// Arr[] = {2, 2}
// Output: 2 1
// Explanation: Repeating number is 2 and
// smallest positive missing number is 1.
// Example 2:
// Input:
// N = 3
// Arr[] = {1, 3, 3}
// Output: 3 2
// Explanation: Repeating number is 3 and
// smallest positive missing number is 2.
// Your Task:
// You don't need to read input or print anything. Your task is to complete the function findTwoElement() which takes the array of integers arr and n as parameters and returns an array of integers of size 2 denoting the answer ( The first index contains B and second index contains A.)
// Expected Time Complexity: O(N)
// Expected Auxiliary Space: O(1)
// Constraints:
// 1 ≤ N ≤ 105
// 1 ≤ Arr[i] ≤ N
//https://practice.geeksforgeeks.org/problems/find-missing-and-repeating2512/1#
class Solve {
int[] findTwoElement(int arr[], int n) {
int[] ans = new int[5];
for(int i=0;i<n;i++){
if(arr[Math.abs(arr[i])-1]<0){
ans[0] = Math.abs(arr[i]);
}
else{
arr[Math.abs(arr[i])-1]*=-1;
}
}
for(int i=0;i<n;i++){
if(arr[i]>0){
ans[1] = i+1;
}
//System.out.println(arr[i]);
}
return ans;
}
}