leetcode1207

Posted asenyang

tags:

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

 1 import collections
 2 class Solution:
 3     def uniqueOccurrences(self, arr: List[int]) -> bool:
 4         obj = collections.Counter(arr).items()
 5         dic = 
 6         for o in obj:
 7             if o[1] not in dic:
 8                 dic[o[1]] = o[0]
 9             else:
10                 return False
11         return True

 

以上是关于leetcode1207的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode --- 1207. Unique Number of Occurrences 解题报告

Leetcode 1207. Unique Number of Occurrences

LeetCode 1207. 独一无二的出现次数

leetcode 0210

1207. 独一无二的出现次数『简单』

Leetcode刷题100天—98. 验证二叉搜索树( 二叉树)—day35