-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path260.single-number-iii.cpp
55 lines (51 loc) · 1.26 KB
/
260.single-number-iii.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
// Tag: Array, Bit Manipulation
// Time: O(N)
// Space: O(1)
// Ref: -
// Note: -
// Given an integer array nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once. You can return the answer in any order.
// You must write an algorithm that runs in linear runtime complexity and uses only constant extra space.
//
// Example 1:
//
// Input: nums = [1,2,1,3,2,5]
// Output: [3,5]
// Explanation: [5, 3] is also a valid answer.
//
// Example 2:
//
// Input: nums = [-1,0]
// Output: [-1,0]
//
// Example 3:
//
// Input: nums = [0,1]
// Output: [1,0]
//
//
// Constraints:
//
// 2 <= nums.length <= 3 * 104
// -231 <= nums[i] <= 231 - 1
// Each integer in nums will appear twice, only two integers will appear once.
//
//
class Solution {
public:
vector<int> singleNumber(vector<int>& nums) {
unsigned int diff = 0;
for (auto x: nums) {
diff ^= x;
}
vector<int> res(2, 0);
int digit = diff & -diff;
for (auto x: nums) {
if ((x & digit) == 0) {
res[0] ^= x;
} else {
res[1] ^= x;
}
}
return res;
}
};