首页 > 其他 > 详细

【LeetCode】217. Contains Duplicate 解题小结

时间:2016-08-27 11:09:55      阅读:126      评论: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.

这题利用unordered_map来解决应该还是很简单的。

class Solution {
public:
    bool containsDuplicate(vector<int>& nums) {
        unordered_map<int, int> map;
        for (int i = 0; i < nums.size(); i++){
            if (map.find(nums[i]) != map.end()){
                return true;
            }
            else{
                map[nums[i]] = i;
            }
        }
        return false;
    }
};

 

【LeetCode】217. Contains Duplicate 解题小结

原文:http://www.cnblogs.com/Doctengineer/p/5812469.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!