Tagged Questions

14
votes
41answers
3k views

Palindrome Golf

The goal: Any language. The smallest function which will return whether a string is a palindrome. Here is mine in Python: R=lambda s:all(a==b for a,b in zip(s,reversed(s))) 50 c …
1
vote
4answers
239 views

Palindrome Question

I had a question regarding a basic program I was writing said whether a word such as racecar is a palindrome or not. All my methods which reverse the string, strip the punctuatio …
-6
votes
4answers
460 views

Recursive Palindrome Test with java

I have the following homework assignment: I need to create a program that recursively tests in a word or phrase is a palindrome. Here is the prompt: A palindrome is "a word, l …
54
votes
66answers
15k views

Programming challenge: can you code a hello world program as a Palindrome?

So the puzzle is to write a hello world program in your language of choice, where the program's source file as a string has to be a palindrome. To be clear, the output has to be e …
0
votes
4answers
176 views

Palindrome Recursion Program

public static boolean palindrome(String input, int i, int j) { if (i >= j) return true; if (input.charAt(i) == input.charAt(j)) { i++; j--; palindrome(input, …
0
votes
3answers
365 views

Palindrome tester with Java, ignoring spaces and punctuation

I have the program made up until the point where it has to ignore and punctuations and spaces in the thread and I was wondering if anyone could help me with the coding for that? Wh …
6
votes
3answers
296 views

if given a 15 digit number whats the best way to find the next palindrome?

in c++ what will be the fastest logic to find next palindrome of a given 15 digit number? for example what will be the next palindrome of: 134567329807541 ?
9
votes
14answers
2k views

How to check that a string is a palindrome using regular expressions?

That was an interview question that I was unable to answer: How to check that a string is a palindrome using regular expressions? p.s. There is already a question "How to check i …
0
votes
2answers
219 views

Palindromes in Haskell

I am working on Project Euler question 4, and need to find the palindrome of the product of 2 3 digit numbers, so I came up with: palindrome = [ x*y | x <- [100..999], y <- …
1
vote
10answers
744 views

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?
0
votes
7answers
810 views

Recursive Function palindrome in Python

I need help writing a recursive function which detects whether a string is a palindrome. But i can't use any loops it must be recursive. Can anyone help show me how this is done. I …
5
votes
6answers
667 views

Palindrome detection efficiency

I got curious by Jon Limjap's interview mishap and started to look for efficient ways to do palindrome detection. I checked the palindrome golf answers and it seems to me that in t …
0
votes
4answers
318 views

stack, printing after the pop

i have a problem with my program. It should be program that recognize palindome through the stack. Everything works great, only thing that don't work is printing stacks(original an …
1
vote
10answers
708 views

Euler problem number #4

Using Python, I am trying to solve problem #4 of the Project Euler problems. Can someone please tell me what I am doing incorrectly? The problem is to Find the largest palindrome …