Ad
  • Custom User Avatar

    Your code is counting number of unique elements in the input. For the case of input "aaabbb", your function computes an uniqueArr to be of length 0. And returns true, while the expected answer is false.

    Instead, you must determine whether ONLY one element occcurs ODD number of times.

    • For the case of input "aaabbb", your logic would compute 2 (both a and b occur odd number of times). In this case, since it is more than one, your function should return false.
    • For the case of input "aaabbbb", your logic would compute 1 (only a occurs odd number of times). And therefore function should return true. (bbaaabb or abbabbawould be valid palindromes).

    I hope this helps!

  • Default User Avatar

    try your function with e.g. "aaabbb"