Top K Hash Tags
Examples
Example 1:
Input: events = [["u1","#ai"],["u1","#ai"],["u2","#ai"],["u2","#ml"],["u3","#ml"],["u4","#db"],["u4","#db"]], k = 2
Output: ["#ai","#ml"]
Explanation:
Example 2:
Input: events = [["alice","#x"],["bob","#y"],["alice","#y"],["alice","#z"]], k = 5
Output: ["#y","#x","#z"]
Explanation: