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

136. 只出现一次的数字

时间:2020-04-02 18:12:06      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:class   amp   single   数字   nbsp   col   style   vector   solution   

 1 class Solution 
 2 {
 3 public:
 4     int singleNumber(vector<int>& nums) 
 5     {
 6         int res = 0;
 7         for(auto a : nums) res ^= a;
 8         return res;
 9     }
10 };

 

136. 只出现一次的数字

标签:class   amp   single   数字   nbsp   col   style   vector   solution   

原文地址:https://www.cnblogs.com/yuhong1103/p/12620999.html

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