Program Discussion :: Strings
9 / 59
Write a function to check whether two given strings are an anagram of each other or not.
Hint:An anagram of a string is another string that contains same characters, only the order of characters can be different.
Example: "abcd" and "dabc" are anagram of each other.
Answer: