0

对于https://leetcode.com/problems/top-k-frequent-elements找到前 k 个频繁元素的问题,我知道我们可以使用 heapq.nlargest() 方法,但为此使用的键只是没有大括号的 dict.get -heapq.nlargest(k,count.keys(),key=count.get)

如果我们尝试打印 dict.get 它会返回对象,如果我们尝试使用不带键的 dict.get() 则会抛出错误。

那么有人可以解释一下使用不带大括号的 dict.get 作为键是什么意思吗?

4

0 回答 0