# 只出现一次的数字 II

给你一个整数数组 nums ,除某个元素仅出现 一次 外,其余每个元素都恰出现 三次 。请你找出并返回那个只出现了一次的元素。

 

示例 1:

输入:nums = [2,2,3,2]
输出:3

示例 2:

输入:nums = [0,1,0,1,0,1,99]
输出:99

 

提示:

 

进阶:你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?

## template ```python class Solution(object): def singleNumber(self, nums): """ :type nums: List[int] :rtype: int """ a = 0 b = 0 for num in nums: a = (num ^ a) & ~b b = (num ^ b) & ~a return a ``` ## 答案 ```python ``` ## 选项 ### A ```python ``` ### B ```python ``` ### C ```python ```