It is a leetcode problem. Given an array of numbers 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.
For example: Given nums = [1, 2, 1, 3, 2, 5], return [3, 5]. My code is:
class Solution {
public:
vector<int> singleNumber(vector<int>& nums) {
int axorb=0;
for(auto i:nums) axorb=axorb^i;
int differbit=(axorb&(axorb-1))^axorb;
int group3=0, group5=0;
for(auto i:nums)
if(differbit&i!=0) group5=group5^i;
else group3=group3^i;
return vector<int>{group3,group5};
}
};
submission result is wrong answer.
Input:[0,0,1,2]
Output:[3,0]
Expected:[1,2]
But if I just change highlighted part to
if(differbit&i) group5=group5^i;
it is accepted. I spent a lot of time thinking about but still have no idea. Maybe some type conversion happened? Thanks