Question: java programming mplement a method named isAnagram) that has two string arguments, A and B. The isAnagram) method should print true if the two string
java programming

mplement a method named isAnagram) that has two string arguments, A and B. The isAnagram) method should print true if the two string arguments are anagrams. Note: An anagram is a word or phrase formed by rearranging the letters of another word or phrase. You do not have to read input from stdin or write output to stdout The code in the locked portion of the editor reads the input strings, A and B, for each test case. The code in the locked portion of the editor prints "true" or "false" to stdout using the return value of isAnagram). Sample Input army mary Sample Output true Explanation The characters of the word "army" can be rearranged to form the word "mary
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
