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

leetcode问题:存在重复元素

时间:2019-03-28 00:11:32      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:判断   integer   length   etc   相同   ebe   content   bsp   strong   

给定一个整数数组,判断是否存在重复元素。

如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。

示例 1:

输入: [1,2,3,1]
输出: true

示例 2:

输入: [1,2,3,4]
输出: false

示例 3:

输入: [1,1,1,3,3,4,3,2,4,2]
输出: true
解法1:原创 10ms
class Solution {
    public boolean containsDuplicate(int[] nums) {
        Arrays.sort(nums);
        int len = nums.length;      
        for(int i = 0; i < len-1; i++)
        {
            if(nums[i]== nums[i+1])
            {
                 return true;
            }           
        }
        return false;
        
    }
}
解法2:23ms
class Solution {
    public boolean containsDuplicate(int[] nums) {
       HashSet<Integer> hs=new HashSet<>();
        boolean flag=false;
        for(int i=0;i<nums.length && !flag;i++){
            if(!hs.contains(nums[i])){
                hs.add(nums[i]);
            }
            else{
                flag=true;
            }
        }
        return flag;
        
    }
}

leetcode问题:存在重复元素

标签:判断   integer   length   etc   相同   ebe   content   bsp   strong   

原文地址:https://www.cnblogs.com/zhangchuan1001/p/10612262.html

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