Skip to content

Commit 708329f

Browse files
authored
Update Top K Frequent Elements - Leetcode 347.py
1 parent 274b0a2 commit 708329f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

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

+16
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,22 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
1616
# Time: O(n log k), Space: O(k)
1717

1818

19+
import heapq
20+
from collections import Counter
21+
22+
def top_k_frequent(nums, k):
23+
# Step 1: Count frequency
24+
freq_map = Counter(nums)
25+
26+
# Step 2: Use max heap (invert frequency to simulate max heap)
27+
max_heap = [(-freq, num) for num, freq in freq_map.items()]
28+
heapq.heapify(max_heap) # Convert list into a heap in O(n)
29+
30+
# Step 3: Extract k most frequent elements
31+
result = [heapq.heappop(max_heap)[1] for _ in range(k)]
32+
return result
33+
# Max Heap
34+
1935
# Buckets
2036
from collections import Counter
2137
class Solution:

0 commit comments

Comments
 (0)