LeetCode 217

217. 存在重复元素

Java

class Solution {
    public boolean containsDuplicate(int[] nums) {
        Set<Integer> s = new HashSet<>();
        for(int i = 0 ; i<nums.length ; i++){
            if(s.contains(nums[i])){
                return true;
            }
            s.add(nums[i]);
        }
        return false;
    }
}
posted @ 2020-06-17 23:29  咸鱼不闲咋整啊  阅读(122)  评论(0编辑  收藏  举报