//给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。
//
// 说明:
//
// 你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?
//
// 示例 1:
//
// 输入: [2,2,1]
//输出: 1
//
//
// 示例 2:
//
// 输入: [4,1,2,1,2]
//输出: 4
// Related Topics 位运算 哈希表
// 👍 1745 👎 0
/*
* 136 只出现一次的数字
* 2021-03-12 14:41:42
* @author oxygenbytes
*/
#include "leetcode.h"
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public:
int singleNumber(vector<int>& nums) {
// a ^ a = 0
// a ^ 0 = a
int res = 0;
for(auto x : nums) res ^= x;
return res;
}
};
//leetcode submit region end(Prohibit modification and deletion)