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

2021-06-09 06:04

阅读:590

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

技术图片

1.我的解题代码

class Solution {
    public boolean containsDuplicate(int[] nums) {
        boolean flag = false;
        HashSet 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


评论


亲,登录后才可以留言!