Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

108
votes
68answers
20k 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 exactly "Hello, ...
29
votes
50answers
4k 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 characters. The ...
16
votes
11answers
19k views

Write a function that returns the longest palindrome in a given string

e.g "ccddcc" in the string "abaccddccefe" I thought of a solution but it runs in O(n^2) time Algo 1: Steps: Its a brute force method Have 2 for loops for i = 1 to i less than array.length ...
13
votes
16answers
10k 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 if the given string ...
10
votes
1answer
359 views

How does this PCRE pattern detect palindromes?

This question is an educational demonstration of the usage of lookahead, nested reference, and conditionals in a PCRE pattern to match ALL palindromes, including the ones that can't be matched by ...
9
votes
3answers
611 views

How to compute palindrome from a stream of characters in sub-linear space/time?

I don't even know if a solution exists or not. Here is the problem in detail. You are a program that is accepting an infinitely long stream of characters (for simplicity you can assume characters are ...
8
votes
1answer
833 views

Longest palindrome in a string using suffix tree

I was trying to find the longest palindrome in a string. The brute force solution takes O(n^3) time. I read that there is a linear time algorithm for it using suffix trees. I am familiar with suffix ...
7
votes
4answers
142 views

How do I efficiently determine the longest individual character palindrome in a given string?

Given a string of length N containing characters [A-Z], how do I determine the longest palindrome for an individual character? I will illustrate this with an example: Given string: JOHNOLSON In ...
7
votes
2answers
3k views

how to find longest palindromic subsequence?

Here is the problem (6.7 ch6 ) from Algorithms book (by Vazirani) that slightly differs from the classical problem that finding longest palindrome. How can I solve this problem ? A subsequence is ...
7
votes
1answer
937 views

How does this Java regex detect palindromes?

This is the third part in a series of educational regex articles. It follows How does this regex find triangular numbers? (where nested references is first introduced) and How can we match a^n b^n ...
6
votes
6answers
1k views

Palindrome Using a stack

Good day! Our professor required us to check if a word is a palindrome by using stacks. Every time I run it, there's an error: Unhandled Exception. Access violation What am I doing wrong? How can i ...
6
votes
11answers
616 views

Puzzled over palindromic product problem

I've been learning Ruby, so I thought I'd try my hand at some of the project Euler puzzles. Embarrassingly, I only made it to problem 4... Problem 4 goes as follows: A palindromic number reads ...
6
votes
3answers
986 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 ?
6
votes
8answers
2k 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 the answers are two ...
4
votes
4answers
72 views

Loops and Stacks, palindrome homework assignment

I'm working on an assignment for my programming class but I've run into some difficulty and I'm not sure where else to look. Basically the question asks that we write a program that checks for ...
4
votes
3answers
361 views

A better algorithm to find the next palindrome of a number string

Firstly here is the problem: A positive integer is called a palindrome if its representation in the decimal system is the same when read from left to right and from right to left. For a given ...
4
votes
4answers
462 views

Finding palindromes in a linked list

This is an interview question(again). Given a singly connected linked list, find the largest palindrome in the list. (You may assume the length of the palindrome is even) The first approach I ...
4
votes
1answer
669 views

Finding the largest palindrome in string impelementation

I'm trying to solve a problem that asks to find the largest palindrome in a string up to 20,000 characters. I've tried to check every sub string whether it's a palindrome, that worked, but obviously ...
4
votes
1answer
293 views

How to choose the next center in the longest palindrome algorithm?

This is a question about the longest palindrome algorithm discussed here some time ago. The quoted blog post, which explains the algorithm, says: "to pick the next center, take the center of the ...
4
votes
1answer
4k views

How to find the longest palindrome in a given string?

Possible Duplicate: Write a function that returns the longest palindrome in a given string I know how to do this in O(n^2). But it seems like there exist a better solution. I've found ...
3
votes
3answers
92 views

Cannot input more than one string in palindrome program

#include <iostream> #include <ctype.h> using namespace std; void isPalindrome(); int main() { char response; isPalindrome(); cout << "Input another string(y/n)?" ...
3
votes
2answers
397 views

Why will this recursive regex only match when a character repeats 2^n - 1 times?

After reading polygenelubricants's series of articles on advanced regular expressions techniques (particularly How does this Java regex detect palindromes?), I decided to attempt to create my own PCRE ...
3
votes
10answers
4k 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?
2
votes
2answers
187 views

Check Palindrome using recursion

I am trying to implement a function that will check to see if a word is a palindrome Below is the code that i have tried to use. the code works for one letter words obviously and words that don't ...
2
votes
2answers
199 views

Palindrome from the product of two 3-digit numbers

I want to find the largest palindrome that can be obtained through the multiplication of two 3-digit numbers. I started off with a and b both being 999, and to decrement a and b with every ...
2
votes
4answers
370 views

PHP beginner palindrome script

I was working on (for fun) writing a script that would recognize palindromes. So far, I'm successful with "Kayak", "Racecar", "Anna", "A man a plan a canal Panama": yet variations on the latter phrase ...
2
votes
2answers
356 views

Python reverse() for palindromes

I'm just getting started in python, and I'm trying to test a user-entered string as a palindrome. My code is: x=input('Please insert a word') y=reversed(x) if x==y: print('Is a palindrome') else: ...
2
votes
4answers
227 views

Palindrome - removing the goto

Good day! Our teacher required us to determine if a word or a series of number is a palindrome or not using stacks. I already finished doing that. But I want to practice more so right now I am trying ...
2
votes
4answers
311 views

Can I please get some feedback on this `isPalindrome()` function in C?

I'm writing some useful functions in C. One of them is isPalindrome(). I figured to determine if a number is a palindrome or not, I should... get all digits in an array iterate through with two ...
2
votes
5answers
333 views

Reverse digits in R

How can you reverse a string of numbers in R? for instance, I have a vector of about 1000 six digit numbers, and I would like to know if they are palindromes. I would like to create a second set ...
2
votes
6answers
2k views

Checking for palindrome string in c

I am accepting a string as a command line argument. I want to check whether the inputted string is a palindrome or not and print the result. I have written the following code. But its displaying the ...
2
votes
6answers
263 views

Why does this simple Python script reveal the incorrect answer?

I'm again working on Project Euler, this time problem #4. The point of this script is to find the largest palindromic product of two three digit numbers. I thought it was fairly straightforward to ...
2
votes
2answers
183 views

user input question

My program checks to test if a word or phrase is a palindrome (reads the same both backward and forward, ex "racecar"). The issue I'm having is after someone enters in "racecar" getting it to ...
2
votes
3answers
328 views

Taking User Input in Java

I'm creating a program that checks if a word or phrase is a palindrome. I have the actual "palindrome tester" figured out. What I'm stuck with is where and what to place in my code to have the ...
1
vote
3answers
68 views

Counting the Number of Palindromes in a Sentence

Good day, everyone! Below is a program which asks a user for a sentence and outputs the number of palindromes in it. #include<iostream> #include<string> #include<sstream> using ...
1
vote
0answers
106 views

SPOJ PALIN problem (SIGABRT runtime error) [closed]

Possible Duplicate: SPOJ PALIN problem (SIGABRT runtime error) With reference to following question : http://www.spoj.pl/problems/PALIN/ The problem asks to find the next higher ...
1
vote
0answers
79 views

SPOJ PALIN problem (SIGABRT runtime error)

With reference to following question : http://www.spoj.pl/problems/PALIN/ The problem asks to find the next higher palindrome for an inputted number. My program works well on my PC (I am using MinGW ...
1
vote
1answer
321 views

longest palindrome prefix complextity

What's the complexity of this algorithm? It seems at least O(n^2). // civic public static boolean isCharPalindrome(String test) { String stripped = ...
1
vote
5answers
264 views

How can I use recursion to find palindromes using Python?

I've just started exploring the wonders of programming. I'm trying to write a code to identify numeric palindromes. Just looking at numbers and not texts. I'm trying to learn to use recursion here. ...
1
vote
0answers
58 views

finding the values on right of current center in longest palindrome length array usaing values of left

i was following this article http://www.akalin.cx/2007/11/28/finding-the-longest-palindromic-substring-in-linear-time/ to understand how to calculate longest palindrome in a string but I am stucked ...
1
vote
5answers
366 views

python and palindromes

i recently wrote a method to cycle through /usr/share/dict/words and return a list of palindromes using my ispalindrome(x) method here's some of the code...what's wrong with it? it just stalls for 10 ...
1
vote
4answers
905 views

Check string for palindrome

a palindrome is a word, phrase, number or other sequence of units that can be read the same way in either direction; read more. To check whether a word is a palindrome I get the char array of the ...
1
vote
4answers
285 views

How can I optimise my awful code for finding the highest palindrome of a 3 digit number?

This is what I have written so far. It compiles, and, as far as I can tell, it should 'work' - if you were to give your computer an infinite amount of time to compute the answer ! I was just ...
1
vote
3answers
448 views

Palindrome in C without pointers and recursion

I'm trying to determine if a phrase is a palindrome (a word that is the same from left to rigth) or not but i can't make it work. What's wrong?, i can't use pointers or recursion or string type ...
1
vote
2answers
218 views

Weird cocoa bug?

Hey folks, beneath is a piece of code i used for a school assignment. Whenever I enter a word, with an O in it (which is a capital o), it fails! Whenever there is one or more capital O's in this ...
1
vote
2answers
488 views

Count double palindromes in given int sequence

For a given int sequence check number of double palindromes, where by double palindrome we mean sequence of two same palindromes without break between them. So for example: in 1 0 1 1 0 1 we have 1 0 ...
1
vote
7answers
1k views

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 across don't do this basic test. If length is even, it can't be a palindrome, no? if len(var) % 2 ...
1
vote
4answers
665 views

Checking to see if a string is a palindrome with String.equals()

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 punctuation work but the one ...
1
vote
4answers
2k 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, i, j); } else if ...
1
vote
12answers
2k 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 made from the ...

1 2