Top "Palindrome" questions

A word, phrase, number, or other sequence of units that may be read the same way in either direction, forward or backward.

How to check if the binary representation of an integer is a palindrome?

How to check if the binary representation of an integer is a palindrome?

c++ c binary integer palindrome
highest palindrome with 3 digit numbers in python

In problem 4 from http://projecteuler.net/ it says: A palindromic number reads the same both ways. The largest palindrome made …

python math logic palindrome
Check even/odd for Palindrome?

Is it a good idea to check for odd/even length of a palindrome number/string? Most snippets I came …

python testing palindrome
implicit declaration of function ‘strrev’

Any ideas on why when I try to compile this code to check if a line from the file atadata …

c palindrome implicit-declaration
Recursive Function : Check for palindrome in Java

I have a class that checks whether a string is a palindrome or not. I have two questions. 1) Is this …

java recursion palindrome
Prolog - Palindrome Functor

I am trying to write a predicate palindrome/1 in Prolog that is true if and only if its list input …

prolog palindrome dcg
Solving palindromic 'Triangle Quest' puzzle in Python

I'm trying to solve this programming puzzle: You are given a positive integer N (0 < N < 10). Your task is …

python python-3.x palindrome
Check if a word is palindrome with string.h

I must do a program that tells me if a string is palindrome or not using the library string.h . …

c palindrome string.h
Finding the Longest Palindrome Subsequence with less memory

I am trying to solve a dynamic programming problem from Cormem's Introduction to Algorithms 3rd edition (pg 405) which asks the …

algorithm language-agnostic dynamic-programming palindrome
How to check for palindrome in Swift using recursive definition

I like many of the features in Swift, but using manipulating strings are still a big pain in the ass. …

swift recursion palindrome