Index « Previous Next »

Question

Two strings are said to be anagrams of one another if you can turn the first string into the second by rearranging its letters. For example, “table” and “bleat” are anagrams, as are “tear” and “rate”. Write a function that takes in two strings as input and determines whether they're anagrams of one another.

Source Code

Output

Hello World!