剑指offer03数组中重复的数字

Posted Anrys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer03数组中重复的数字相关的知识,希望对你有一定的参考价值。

剑指offer03数组中重复的数字

题目

在这里插入图片描述

代码

hashset

class Solution {
    public int findRepeatNumber(int[] nums) {
        HashSet<Integer> dic = new HashSet<>();
        for(int num : nums) {
            if(dic.contains(num)) return num;
            dic.add(num);
        }
        return -1;
    }
}

结果

在这里插入图片描述

以上是关于剑指offer03数组中重复的数字的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer 03.数组中重复的数字

剑指offer 03.数组中重复的数字

剑指Offer03. 数组中重复的数字(哈希)

剑指Offer03. 数组中重复的数字(哈希)

剑指Offer 03. 数组中重复的数字

剑指Offer 03. 数组中重复的数字