(Anagrams) Write a method that checks whether two words are anagrams. Two words are anagrams if they contain the same letters in any order. For example, "silent" and "listen" are anagrams. The header of the method is as follows:
Public static boolean isAnagram(String s1, String s2)
Write the test program that prompts the user to enter two strings and if they are anagrams, display “anagram”, otherwise displays “not anagram”.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.