What is the best/easiest way to sort a large list of words (10,000-20,000) by the number of times they occur in the list, in Java. I tried a basic implementation but I get an ou
THe easiest way to sort your words is alphabetically. But you can also do it by how many letters that word has that exist in another word.