LeetCode 217 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.

代码

    public static boolean containsDuplicate(int[] nums) {

        Set<Integer> s = new HashSet<Integer>();

        for (int n : nums) {
            if (s.contains(n)) {
                return true;
            }
            s.add(n);
        }

        return false;
    }
    原文作者:_我们的存在
    原文地址: https://blog.csdn.net/Yano_nankai/article/details/50220765
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞