Top K Frequent Words (#692)

Given an array of strings words and an integer k, return the k most frequent strings.

Return the answer sorted by the frequency from highest to lowest. Sort the words with the same frequency by their lexicographical order.

Company Tags: Amazon

Core Concept: Heap, HashMap, Sorting

Solve on LeetCode