标签:
思路:任何一个数和自身求异或操作都是0,任何一个数和0求异或操作都是它自身
class Solution {
public:
int singleNumber(int A[], int n) {
int res=0;
for (int i = 0; i < n; i++)
res ^= A[i];
return res;
}
};
标签:
原文地址:http://www.cnblogs.com/flyjameschen/p/5d30415c291569e4feb3ab1f89993372.html