[LeetCode] 1207. Unique Number of Occurrences

Given an array of integers arr, return true if the number of occurrences of each value in the array is unique, or false otherwise.

Example 1:
Input: arr = [1,2,2,1,1,3]
Output: true
Explanation: The value 1 has 3 occurrences, 2 has 2 and 3 has 1. No two values have the same number of occurrences.

Example 2:
Input: arr = [1,2]
Output: false

Example 3:
Input: arr = [-3,0,1,-3,1,1,1,-3,10,0]
Output: true

Constraints:
1 <= arr.length <= 1000
-1000 <= arr[i] <= 1000

独一无二的出现次数。

给你一个整数数组 arr,请你帮忙统计数组中每个数的出现次数。
如果每个数的出现次数都是独一无二的,就返回 true;否则返回 false。
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/unique-number-of-occurrences
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

思路

题目问的是独一无二的出现次数,那么我们首先需要用 hashmap 记录所有出现过的元素和他们各自的出现次数。然后我们需要用一个 hashset 去过滤 map.values(),看看哪个出现次数是唯一的。

复杂度

时间O(n)
空间O(n)

代码

Java实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Solution {
public boolean uniqueOccurrences(int[] arr) {
HashMap<Integer, Integer> map = new HashMap<>();
for (int num : arr) {
map.put(num, map.getOrDefault(num, 0) + 1);
}

Set<Integer> set = new HashSet<>();
for (int key : map.keySet()) {
int val = map.get(key);
if (!set.add(val)) {
return false;
}
}
return true;
}
}

[LeetCode] 1207. Unique Number of Occurrences
https://shurui91.github.io/posts/1634991093.html
Author
Aaron Liu
Posted on
November 30, 2022
Licensed under