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 class Solution { 2 public boolean uniqueOccurrences(int[] arr) { 3 HashMap<Integer, Integer> map = new HashMap<>(); 4 for (int num : arr) { 5 map.put(num, map.getOrDefault(num, 0) + 1); 6 } 7 8 HashSet<Integer> set = new HashSet<>(); 9 for (int val : map.values()) { 10 if (!set.add(val)) { 11 return false; 12 } 13 } 14 return true; 15 } 16 }
标签:map,arr,false,1207,Occurrences,Unique,true,LeetCode,occurrences From: https://www.cnblogs.com/cnoodle/p/16937310.html