跳至主要內容

1207. 独一无二的出现次数

T4mako算法数组哈希表小于 1 分钟

1207. 独一无二的出现次数

简单

题目描述open in new window

解题思路:
定义一个map,存放数组中的数与出现的次数。
将出现的次数转换为set,比较set与arr的长度

class Solution {
    public boolean uniqueOccurrences(int[] arr) {
        HashMap<Integer,Integer> map = new HashMap<>();
        for (int i = 0; i < arr.length; i++) {
            map.put(arr[i],map.getOrDefault(arr[i],0) + 1);
        }
        return new HashSet<>(map.values()).size() == map.keySet().size();
    }
}
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.5