What is anagram?
An anagram is a string that can be formed by rearranging the characters of a different string using all the original characters exactly once.
For example, "binary" can be rearranged into "brainy".
Given two strings, we have to check whether they are anagram of each other.
Example:
Input:
String1 = "ARM"
String2 = "RAM"
Like
Share
Subscribe
Comment 👍