Skip to content

Commit d54cafc

Browse files
authored
Update Top K Frequent Elements - Leetcode 347.py
1 parent bfef3ca commit d54cafc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Top K Frequent Elements - Leetcode 347/Top K Frequent Elements - Leetcode 347.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
1515
return [h[1] for h in heap]
1616
# Time: O(n log k), Space: O(k)
1717

18+
19+
# Buckets
1820
from collections import Counter
1921
class Solution:
2022
def topKFrequent(self, nums: List[int], k: int) -> List[int]:

0 commit comments

Comments
 (0)