只出现一次的数字 II⚓︎ Leetcode题目链接 描述⚓︎ 详见中文题目链接。 解答⚓︎ 1 2 3 4 5 6 7 8 9 10 11 12 13 14class Solution { public: int singleNumber(vector<int>& nums) { int ans = 0; for (int i = 0; i < 32; i++) { int cnt = 0; for (int num : nums) { cnt += num >> i & 1; } ans |= cnt % 3 << i; } return ans; } };