LeetCode hot100@技巧 2024-12-19 21:15 | 51 | 0 | 算法 324 字 | 5 分钟 136. 只出现一次的数字❌ 如果能用sort函数或者set容器就很简单,可惜不允许 异或解决 class Solution { public: int singleNumber(vector<int>& nums) { int res = 0; for(int num : nums) { res ^= num; } retur… leetcode力扣技巧