LeetCode 五月打卡-day21
Posted 王六六的IT日常
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 五月打卡-day21相关的知识,希望对你有一定的参考价值。
给你一个整数数组 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的主要内容,如果未能解决你的问题,请参考以下文章