Java | Leetcode Java题解之第217题存在重复元素-题解:

class Solution {
    public boolean containsDuplicate(int[] nums) {
        Set<Integer> set = new HashSet<Integer>();
        for (int x : nums) {
            if (!set.add(x)) {
                return true;
            }
        }
        return false;
    }
}
上一篇:Redis基础教程(十一):Redis 发布订阅


下一篇:网络安全审计