We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90ba619 commit 9593c2cCopy full SHA for 9593c2c
Python/least-number-of-unique-integers-after-k-removals.py
@@ -12,7 +12,7 @@ def findLeastNumOfUniqueInts(self, arr, k):
12
:rtype: int
13
"""
14
count = collections.Counter(arr)
15
- result, count_count = len(count), Counter(count.itervalues())
+ result, count_count = len(count), collections.Counter(count.itervalues())
16
for c in xrange(1, len(arr)+1):
17
if k < c*count_count[c]:
18
result -= k//c
0 commit comments