Top K Frequently Bought Products
Medium📝 Description
Given a list of purchased products, return the top K most frequently bought items.
Input Format
["Shirt", "Jeans", "Shirt", "Shoes"], K=2
Output Format
["Shirt", "Jeans"]
Constraints
Number of products ≤ 10^5, 1 ≤ K ≤ 100
🔍 Sample Input
["Shirt", "Jeans", "Shirt", "Shoes"], 2
✅ Sample Output
["Shirt", "Jeans"]
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run