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

645. Set Mismatch

时间:2018-06-08 14:19:20      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:turn   sync   tor   win   IV   wap   mat   style   push   

 1 static int wing=[]()
 2 {
 3     std::ios::sync_with_stdio(false);
 4     cin.tie(NULL);
 5     return 0;
 6 }();
 7 
 8 class Solution 
 9 {
10 public:
11     vector<int> findErrorNums(vector<int>& nums) 
12     {
13         int sz=nums.size();
14         vector<int> help(sz+1,0);
15         for(int i:nums)
16             help[i]++;
17         help[0]=1;
18         vector<int> res;
19         for(int i=0;i<sz+1;i++)
20         {
21             if(help[i]!=1)
22                 res.push_back(i);
23         }
24         if(help[res[0]]==0)
25             swap(res[0],res[1]);
26         return res;
27     }
28 };

扫一遍完事儿,简单粗暴

645. Set Mismatch

标签:turn   sync   tor   win   IV   wap   mat   style   push   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9154999.html

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