题解 | #不同的体重#

不同的体重

https://www.nowcoder.com/practice/4a6411ef749445e88baf7f93d1458505

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param arr int整型vector 
     * @return bool布尔型
     */
    bool uniqueOccurrences(vector<int>& arr) {
        // write code here
        unordered_map<int, int> map1, map2;
        for (auto& x : arr)
            map1[x]++;
        for (auto& x : map1)
            map2[x.second]++;
        for (auto& x : map2)
            if (x.second > 1)
                return false;
        return true;
    }
};

全部评论

相关推荐

26牛牛不会梦到感谢信:羡慕离职了还能吃吗现在就赶回去
点赞 评论 收藏
分享
评论
1
1
分享

创作者周榜

更多
牛客网
牛客企业服务