码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 137

时间:2019-03-19 01:43:38      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:tor   single   enum   turn   color   bsp   amp   span   for   

class Solution {
public:
    int singleNumber(vector<int>& nums) {
        int res = 0;
        for(int i=0;i < 32;i++){
            int sum = 0;
            for(int num:nums){
                sum += (num>>i)&1; //所有数字二进制第一位有1的加
            }
            res = res|((sum%3)<<i);//有1的3个 一取模没了,留下 1个的,往左移i位用”或“赋值
        }
        return res;
    }
};

 

Leetcode 137

标签:tor   single   enum   turn   color   bsp   amp   span   for   

原文地址:https://www.cnblogs.com/cunyusup/p/10556204.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!