LeetCode 五月打卡-day21

Posted 王六六的IT日常

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 五月打卡-day21相关的知识,希望对你有一定的参考价值。

961. 在长度 2N 的数组中找出重复 N 次的元素

给你一个整数数组 nums ,该数组具有以下属性:

  • nums.length == 2 * n.
  • nums 包含 n + 1 个 不同的 元素
  • nums 中恰有一个元素重复 n 次

找出并返回重复了 n 次的那个元素。

示例 1:
输入:nums = [1,2,3,3]
输出:3

示例 2:
输入:nums = [2,1,2,5,3,2]
输出:2

示例 3:
输入:nums = [5,1,5,2,5,3,5,4]
输出:5

哈希表

class Solution 
    public int repeatedNTimes(int[] nums) 
        Set<Integer> found = new HashSet<Integer>();
        for (int num : nums) 
            if (!found.add(num)) 
                return num;
            
        
        // 不可能的情况
        return -1;

    

以上是关于LeetCode 五月打卡-day21的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 五月打卡-day01

LeetCode 五月打卡-day19

LeetCode 五月打卡-day07

LeetCode 五月打卡-day20

LeetCode 五月打卡-day08

LeetCode 五月打卡-day13