A word, phrase, number, or other sequence of units that may be read the same way in either direction, forward or backward.
A palindrome is a word, phrase, number or other sequence of units that can be read the same way in …
java arrays string char palindromeI'm trying to check for a palindrome with Python. The code I have is very for-loop intensive. And it seems …
python string palindromee.g "ccddcc" in the string "abaccddccefe" I thought of a solution but it runs in O(n^2) time Algo 1: …
algorithm palindromeI wonder how to write palindrome in javascript, where I input different words and program shows if word is palindrome …
javascript palindromeI have a string as input and have to break the string in two substrings. If the left substring equals …
c# string palindromeI am trying to create a Palindrome program using recursion within Java but I am stuck, this is what I …
java recursion palindromeI need help writing a recursive function which detects whether a string is a palindrome. But i can't use any …
python recursion palindromeThat was an interview question that I was unable to answer: How to check that a string is a palindrome …
regex palindromeIf the input is 'abba' then the possible palindromes are a, b, b, a, bb, abba. I understand that determining …
java algorithm substring palindromeHere is the problem (6.7 ch6 ) from Algorithms book (by Vazirani) that slightly differs from the classical problem that finding longest …
algorithm dynamic-programming palindrome