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

[LeetCode] Contains Duplicate

时间:2017-07-17 13:12:07      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:div   ice   tco   func   返回   数字   bsp   distinct   solution   

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.

判断数组中是否有重复的数字,如果有返回true,如果没有返回false。利用map求解。

class Solution {
public:
    bool containsDuplicate(vector<int>& nums) {
        unordered_map<int, int> m;
        for (int num : nums)
            m[num]++;
        for (auto it = m.begin(); it != m.end(); it++)
            if (it->second >= 2)
                return true;
        return false;
    }
};
// 39 ms

 

[LeetCode] Contains Duplicate

标签:div   ice   tco   func   返回   数字   bsp   distinct   solution   

原文地址:http://www.cnblogs.com/immjc/p/7193701.html

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