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

leetcode 217:Contains Duplicate

时间:2015-09-20 17:49:04      阅读:208      评论: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.

思路:

这道题做了很久,开始思路是挨个比较,最大复杂度为n2,最后看了别人的思路,醒悟可以用map做,因为map 的key是不允许重复的(第一次觉醒,原来还可以用map,之前压根没想到)

编码:

import java.util.*;
public class Solution {
    public boolean containsDuplicate(int[] nums) {
        Map<Integer,Integer> map = new HashMap<Integer,Integer>();
        
        for(int i=0; i<nums.length; i++) {
            if(map.containsKey(nums[i]))
                return true;
            else
                map.put(nums[i],i);
        }
        return false;
    }
}

 

leetcode 217:Contains Duplicate

标签:

原文地址:http://www.cnblogs.com/cactus1504/p/4823747.html

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