Skip to content

Commit 9593c2c

Browse files
authored
Update least-number-of-unique-integers-after-k-removals.py
1 parent 90ba619 commit 9593c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/least-number-of-unique-integers-after-k-removals.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def findLeastNumOfUniqueInts(self, arr, k):
1212
:rtype: int
1313
"""
1414
count = collections.Counter(arr)
15-
result, count_count = len(count), Counter(count.itervalues())
15+
result, count_count = len(count), collections.Counter(count.itervalues())
1616
for c in xrange(1, len(arr)+1):
1717
if k < c*count_count[c]:
1818
result -= k//c

0 commit comments

Comments
 (0)