Palindrome String Coding Problems

Last Updated : 3 Sep, 2026

A string is called a palindrome if the reverse of the string is the same as the original one. For example “madam”, “racecar” and “12321”, are palindrome and "abc", "abb" and "ac" are not palindrome.

  • A palindrome string has a symmetric structure which means that the character in the first half of the string are the same as in the rear half but in reverse order.
  • Any string of length 1 is always a palindrome.

Easy Problems:

Medium Problems:

Hard Problems:

Comment