Skip to content
Advertisement

How do you check if a word has an anagram that is a palindrome?

How do you compare a palindromic word to one of the newly formed words of an anagram?

And how do you grab one of the newly formed words for it to be compared to the input word?

This is my code:

JavaScript

It’s not yet done because the permutation and comparison won’t work. The output is displaying false, I need it to be true because the anagram of MMAAD is madam. And I have to check if madam is indeed a palindrome of mmaad.

Advertisement

Answer

So What I did is used HashMap instead of creating words from the given word
A String can be of even or odd length


If “EVEN” String is palindrome then every “character” in the String will appear even times
eg: String str = maam : m=2, a=2


If “ODD” String is a palindrome then there will only be 1 character of odd occurrence and the rest will occur even times.
eg: String str = mmaad: m=2,a=2,d=1


To store the Occurrence of the Characters in the String we will use HashMap where Character of the String is the KEY and its occurrence is VALUE

JavaScript

And we will add each Character in the HashMap with the number of times it has appeared in the String.

Now we will check if the String length is “even” or “odd” if “EVEN” Length String we know that every character will appear EVEN times and if any time a character appears “ODD” times we return false i.e It’s not a Palindrome

JavaScript

If “ODD” Length String we know that only one Character will appear odd time and the rest will be of EVEN Occurrence
And if there are 2 characters that occur odd times then its not a palindrome

JavaScript

Here’s the whole Code:

JavaScript
JavaScript

output:

JavaScript
Advertisement