-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathNon_Repeating_Numbers.cpp
72 lines (63 loc) · 1.45 KB
/
Non_Repeating_Numbers.cpp
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
Given an array A containing 2*N+2 positive numbers, out of which 2*N numbers exist in pairs whereas the other two number occur exactly once and are distinct. Find the other two numbers.
Example 1:
Input:
N = 2
arr[] = {1, 2, 3, 2, 1, 4}
Output:
3 4
Explanation:
3 and 4 occur exactly once.*/
#include<bits/stdc++.h>
using namespace std;
class Solution
{
public:
vector<int> singleNumber(vector<int> nums)
{
// Code here.
int res=0;
vector <int> vec,v;
for(int i=0;i<nums.size();i++)
{
res^=nums[i];
}
int set_bit_no = res & ~(res-1);
int temp=res;
for(int i=0;i<nums.size();i++)
{
if((nums[i]& set_bit_no))
{
vec.push_back(nums[i]);
}
}
for(int i=0;i<vec.size();i++)
{
temp^=vec[i];
}
v.push_back(temp);
res^=temp;
v.push_back(res);
sort(v.begin(),v.end());
return v;
}
};
// { Driver Code Starts.
int main(){
int T;
cin >> T;
while(T--)
{
int n;
cin >> n;
vector<int> v(2 * n + 2);
for(int i = 0; i < 2 * n + 2; i++)
cin >> v[i];
Solution ob;
vector<int > ans = ob.singleNumber(v);
for(auto i: ans)
cout << i << " ";
cout << "\n";
}
return 0;
} // } Driver Code Ends