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

[LintCode] Single Number 单独的数字

时间:2016-11-06 16:21:50      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:lint   const   his   int   turn   pass   htm   style   white   

 

Given 2*n + 1 numbers, every numbers occurs twice except one, find it.

Example

Given [1,2,2,1,3,4,3], return 4

Challenge 

One-pass, constant extra space.

 

LeetCode上的原题,请参见我之前的博客Single Number

 

class Solution {
public:
    int singleNumber(vector<int>& nums) {
        int res = 0;
        for (auto num : nums) res ^= num;
        return res;
    }
};

 

[LintCode] Single Number 单独的数字

标签:lint   const   his   int   turn   pass   htm   style   white   

原文地址:http://www.cnblogs.com/grandyang/p/6035198.html

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