Checking if Strings are Anagrams
Strings which are composed of the same alphabets and their frequency are known as anagrams of each other.
Procedure :
Take the two strings as input
Create an hash array of size 26 and initialise it with 0.
For each character the first string, increment the corresponding index in the hash array.
For each character in the second string, decrement the corresponding index in the hash array.
Loop through the hash array. If any of the element is not 0, return false. Else, return true.
C Function :
Contributed by Nitin Ranganath
Last updated