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

Contains Duplicate leetcode

时间:2016-01-09 17:05:03      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

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.

 

Subscribe to see which companies asked this question

 

bool containsDuplicate(vector<int>& nums) {
    unordered_map<int, int> hash;
    for (auto i : nums)
    {
        if (hash.find(i) == hash.end())
            hash.insert(make_pair(i, 1));
        else
            return true;
    }
    return false;
}

 

Contains Duplicate leetcode

标签:

原文地址:http://www.cnblogs.com/sdlwlxf/p/5116669.html

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