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

Contains Duplicate

时间:2015-05-26 15:55:23      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

Contains Duplicate

问题:

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.

思路:

  hash

我的代码:

技术分享
public class Solution {
    public boolean containsDuplicate(int[] nums) {
        if(nums==null || nums.length==0) return false;
        HashSet<Integer> set = new HashSet<Integer>();
        for(int num: nums)
        {
            if(set.contains(num))   return true;
            else set.add(num);
        }
        return false;        
    }
}
View Code

 

Contains Duplicate

标签:

原文地址:http://www.cnblogs.com/sunshisonghit/p/4530553.html

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