码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 217. 存在重复元素

时间:2020-10-29 10:06:06      阅读:17      评论:0      收藏:0      [点我收藏+]

标签:++   return   哈希表   bsp   contains   pre   tco   hash   nbsp   

//通过哈希表来查重
class Solution {
    public boolean containsDuplicate(int[] nums) {
        Set<Integer> set = new HashSet<>();
        for(int i = 0;i < nums.length;i++){
            if(set.contains(nums[i])) return true;
            set.add(nums[i]);
        }
        return false;
    }
}

 

LeetCode 217. 存在重复元素

标签:++   return   哈希表   bsp   contains   pre   tco   hash   nbsp   

原文地址:https://www.cnblogs.com/peanut-zh/p/13891745.html

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