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

Contains Duplicate

时间:2015-06-28 00:04:17      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:

Description:

Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.

Code:

 1  bool containsDuplicate(vector<int>& nums) {
 2         unordered_map<int,int>m;
 3         for (int i = 0; i < nums.size(); ++i)
 4         {
 5             if (!m.count(nums[i]))
 6                 m[nums[i]]=i;
 7             else
 8                 return true;
 9         }
10         return false;
11     }

 

Contains Duplicate

标签:

原文地址:http://www.cnblogs.com/happygirl-zjj/p/4604857.html

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