码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode初级算法练习题4_存在重复元素

时间:2021-03-09 12:58:00      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:class   技术   new   com   http   lse   break   integer   png   

技术图片

1.我的解题代码

class Solution {
    public boolean containsDuplicate(int[] nums) {
        boolean flag = false;
        HashSet<Integer> set = new HashSet<>();
        for(int i:nums){
            boolean p = set.add(i);
            if(!p){
                flag = true;
                break;
            }
        }
        return flag;
    }
}

LeetCode初级算法练习题4_存在重复元素

标签:class   技术   new   com   http   lse   break   integer   png   

原文地址:https://www.cnblogs.com/daweiguo/p/14497306.html

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