概述
python
class Solution:
def singleNumber(self, nums: List[int]):
res = 0
for i in range(32):
count = 0
for num in nums:
count += (num >> i) & 1
if count % 3 != 0:
res += pow(2, i)
return res if (res>>31) & 1 == 0 else -((res^0xffffffff)+1)
最后
以上就是等待豆芽为你收集整理的只出现一次的数字II-位运算137-python的全部内容,希望文章能够帮你解决只出现一次的数字II-位运算137-python所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复