-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsingle-number-ii.cpp
49 lines (38 loc) · 1.3 KB
/
single-number-ii.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
class Solution {
public:
int singleNumber(vector<int>& nums) {
// can change the dimention to detect bit pattern and add that pattern, the one with excess one will be the answer.
vector<int> bitpattern(32,0);
for(int num: nums) {
for( int i = 0; i< 32; i++) {
if ( num & ( 1 << i ) ) {
bitpattern[i] += 1;
}
}
}
int result = 0;
for( int i = 0; i< 32; i++) {
if ( bitpattern[i] % 3 == 1 ) {
result += ( 1 << i );
}
}
return result;
}
// Map based solution
// int singleNumber(vector<int>& nums) {
// unordered_map<int,int> occurenceCount;
// for(int i: nums) {
// occurenceCount[i] = occurenceCount[i] + 1;
// }
// unordered_map<int,int>::iterator occurenceItr;
// for( occurenceItr = occurenceCount.begin();
// occurenceItr != occurenceCount.end();
// occurenceItr++ ) {
// if ( occurenceItr-> second == 1) {
// return occurenceItr -> first;
// }
// }
// return 0;
// }
// Can be sorted. nlogn solution
};