LeetCode

leetcode-1207 独一无二的出现次数 2021-08-

2021-08-29  本文已影响0人  秸秆混凝烧结工程师

题目:(以后改用英文了 不接受的小伙伴留言)

Given an array of integers arr, write a function that returns true if and only if the number of occurrences of each value in the array is unique.

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

*********题解********
分析一下:

整型数组,问每个数字出现的次数都否都不同。对于一道 Easy 的题目来说,没有太大的难度,就是用个 HashMap 来统计每个数字出现的次数,然后再用个 HashSet 来判断某个次数是否之前出现过了,若出现过了,则返回 false,否则最终返回 true

C++代码示范:

class Solution {
public:
bool uniqueOccurrences(vector<int>& arr) {
unordered_map<int, int> numCnt;
unordered_set<int> st;
for (int num : arr) ++numCnt[num];
for (auto a : numCnt) {
if (st.count(a.second)) return false;
st.insert(a.second);
}
return true;
}
};

Python代码示范:
其实就是很简单的字典法了

class Solution(object):
def uniqueOccurrences(self, arr):
dic = {}
for num in arr:
if num not in dic:
dic[num] = 1
else:
dic[num] += 1

    res = {}
    for value in dic:
        if dic[value] not in res:
            res[dic[value]] = 1
        else:
            res[dic[value]] += 1

    for key in res:
        if res[key] >= 2:
            return False
        
    return True

最后看一下我AC的成果:

| [通过] | 0 ms | 7.7 MB | C++ |
天啊 耗时 0 秒啊 我的天啊 第一次用C++ 就发先PY完全不是C++ 的对对手

上一篇下一篇

猜你喜欢

热点阅读