What is an easy way to tell if a list of words are anagrams of each other?

Put all the letters in alphabetical order in the string (sorting algorithm) and then compare the resulting string.

Leave a Comment