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

learn more… | top users | synonyms

-1
votes
6answers
55 views

Java- Check palindrome

Could someone please point out the mistake in my program? The output is always: "it is not a palindrome" String newstr=""; for(int j=length-1;j>0;j--) { char m=str.charAt(j); ...
2
votes
2answers
65 views

Need to fasten my Java code

I am a fairly new java programmer and trying to solve problems from the Spoj. But the problem for me is not the actual difficulty of the algorithm; it is the performance of my Java code as it usually ...
0
votes
3answers
55 views

Python: Checking for palindrome returns False for some reason

I'm trying to write a program, and one of the things I need to do is to check if a number is a palindrome. For some reason, what I wrote does not work: flag = True for j in range(0, len(listnum)): ...
-1
votes
1answer
52 views

Compiler Error in C — Expected ')' before '!' token.

I'm coding a basic program to check if a string is a palindrome or not. #include <stdio.h> #include <string.h> //Has some very useful functions for strings. #include ...
0
votes
6answers
84 views

Finding all palindromic numbers within a range

I need some help with below: write a function (main) which will ask the user to enter a starting and ending number range (inclusive). Count through the numbers using a while loop. Add the number ...
0
votes
2answers
147 views

C++ program to check if a given string is a palindrome

The problem here is that it can't be a string from user input. There are 7 strings, 6 of them are numbers and one is a word "abba". I have so far written much of the code but I'm having trouble ...
0
votes
0answers
64 views

re-arranging letters to produce a palindrome [closed]

I wrote this simple function (in Java) to re-arrange letters in a given String to produce a palindrome, or if it is not possible, just prints -1 and returns. For some reason, I can't figure out why ...
-5
votes
1answer
57 views

Explaining code for a presentation [closed]

I have a presentation tomorrow and I just want to be prepared before I give it. I have to explain the isSymmetrical method to the class and could use help sounding professional and confident. The code ...
-3
votes
2answers
90 views

Eclipse not running Java Code

Am really new to Java, started to study it on my own.... I downloaded netbeans and Eclipse and the two gave me the same result.. they don't run the code (stuck on running) neither let me debug it - ...
0
votes
1answer
111 views

Largest Palindrome 3 digits C++

I cannot figure out why this code isn't working. It doesn't even seem to be going through my for loops and nested loops. I'm very new to programing. I have been trying to answer Euler questions for ...
-1
votes
3answers
64 views

Code does not work as intended (Palindrome checker)

I am trying to check if a string is a palindrome, but it seems it does not work, because when I send a string that I know is not a palindrome, it returns that it is a palindrome, can anyone help? It ...
0
votes
1answer
69 views

Prime Palindrome Logic Efficiency

I wrote a code to get first 1000 prime palindromes ,though my logic is correct ,I dont seem to be getting first 1000 prime palindromes ,I am getting some 113 Prime Palindromes and after that I don't ...
0
votes
0answers
36 views

C - use of gmp on Spoj shows compilation error

I am working on next palindrome problem .There i got introduced to gmp library . I tried myself the working of gmp library as follows #include <stdio.h> #include <stdlib.h> #include ...
0
votes
3answers
148 views

Finding Palindrome numbers with JavaScript Project Euler Trouble [closed]

I am trying to find the largest palindrome number that is the product of two 3 digit numbers. So far I can find input a number, then multiply that number by 100-999 with a for loop. Then I turn the ...
-7
votes
1answer
95 views

Can anyone tell me best algo to check if a number is palindrome or not,I mean fastest algo cos I have to check for over 10^20 range [closed]

while(s1!=0) { rem1=s1%10; reverse=reverse1*10+rem1; s1/=10; } But this doesn't work for large number of range It takes a lot of time to compute for such input.
1
vote
3answers
212 views

How to calculate no. of palindroms in a large number interval?

I want to calculate how many numbers are palindrome in large interval data say 10^15 My simple code (python) snippet is: def count_palindromes(start, end): count = 0 for i in range(start, ...
0
votes
3answers
231 views

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 . I wrote the following code but the output is always "palindrome" #include<stdio.h> ...
0
votes
2answers
50 views

How to check if an appropriate enumerable is a palindrome

Obviously, a hash would not work for this kind of test. Anyways, here's what I have so far: module Enumerable def palindrome? arr = [] self.reverse_each do |x| arr << x end ...
2
votes
2answers
78 views

Why list created by code does not include values greater than 99,999 (Python)

This code is meant to find the largest palindrome created by the product of two 3 digit numbers. I'm sure that there are more efficient ways to solve this problem, and you're welcome to post them, ...
2
votes
3answers
175 views

Palindrome Checker Java boolean insight

So I'm making a palindrome checker in java, and i've seemed to hit a roadblock this is my code so far: public class StringUtil { public static void main(String[] args) { ...
0
votes
0answers
28 views

Palindrome coding

I am trying to create a Palindrome tester in java using a method.. This is what I have so far. It is so close I just can't figure out why it won't say that it IS a palindrome and reverse it. ...
1
vote
2answers
140 views

Making a Given String a Palindrome

Can someone please discuss and explain a way I can modify my code to function with these test cases... I am trying to make my program take a word and make it a palindrome by replacing one letter in a ...
0
votes
3answers
143 views

detecting a palindrome without using reverse

I was thinking a way to create a function that detects a palindrome without using reverse... I thought I would be clever and do a condition where substring 0 to middle equals substring end to middle. ...
0
votes
1answer
80 views

Ignore a letter in isPalindrome() method - Java

I am wondering how the following method could be modified to ignore a certain letter and have it as a wildcard when checking if a string is a palindrome... example: "wows", in this case the method ...
1
vote
4answers
361 views

Check for palindrome recursively

I have a class that checks whether a string is a palindrome or not. I have two questions. 1) Is this the most efficient way to check for palindrome? 2) Can this be implemented recursively? public ...
3
votes
2answers
209 views

Determine if input is a palindrome in C

I'm fairly new to C and I'm having a little bit of a problem. I have to write a program that takes user input and determines if the input is a palindrome. I've got the program to reverse the input, ...
1
vote
4answers
371 views

Checking to see if a string is a palindrome or not

I am very close to finishing my one practice problem that deals with a palindrome and a string parameter and I am stuck with the main method to call the method. Every time I compile my code it ...
1
vote
2answers
159 views

Explain this algorithm

while solving the Palindrome problem on codechef I wrote an algorithm, which gave a TLE on test cases more than 10^6. So taking lead from people who had already solved it I wrote the following code in ...
0
votes
4answers
158 views

Local variable not used

I am trying to make a test of whether an inputted word is a palindrome or not (the same spelled forward and backward). From what I can see it should work but Eclipse says "The value of the local ...
0
votes
0answers
75 views

How to find shortes palindrome subsequence in the char[]

I am looking for the shortest palindrome in the char[]. How to do it beside taking every char and checking its surroundings chars what is giving O(n^2)?
-3
votes
3answers
138 views

Python 3.2 - Converting words to lower case & number of palindromes in the list of words that have at least 3 letters

I have a random file of words and some of them are palindromes and some are not. Some of those palindromes are 3 or more letters long. How do I count them? I'm wondering how to make the conditions ...
0
votes
2answers
231 views

counting the number of palindromes in a range in python

I'm sort of new to python. I'm trying to go through a specific range of numbers and have python count all the palindromes in it and return them to me (total number count, not their sum). So it would ...
0
votes
2answers
66 views

need to derive a function for palindrome

I need to derive a function which takes a string and returns whether or not that string is a palindrome and my function should return True on strings which are palindromes if spaces aren’t considered ...
0
votes
1answer
257 views

how to check compare if palindrome or not?

I don't know much of assembly language but I tried making this palindrome and it's quite hard. First I have to enter a string then show its original and reversed string then show if its a palindrome ...
0
votes
2answers
243 views

Palindrome Function

I need to rewrite the program to use a function isPalindrome. It needs to input a 5 digit integer and return a boolean (true if it is a palindrome, false if it is not), and it cannot contain any cout ...
0
votes
0answers
36 views

Palindrome Function results in Segmentation fault (core dumped)

I have to create 2 functions that test a palindrome. The first one is case sensitive (which is the one that works), the other that doesn't work is case insensitive and ignores spaces in the string. ...
2
votes
1answer
273 views

C Program - Palindrome with functions - almost fully complete one small issue

Is there a way I can remove the white spaces when comparing two strings. The assignment is create a palindrome that is case insensitive and must ignore the white spaces. So far I have void ...
3
votes
2answers
145 views

Palindrome Checker using StringBuilder

Im trying to create a palindrome checker. I am using a StringBuilder and I've discovered that appending spaces are kind of tricky. EDIT: are there other ways besides using .reverse()? Thanks for the ...
0
votes
3answers
56 views

Having trouble with terminating code on a recessive palindrome method

I'm trying to write code that tells the user if a word they input is a palindrome or not. I am using a recursive method to reverse the word, but it isn't terminating correctly. The ...
0
votes
0answers
87 views

Get blank line after calling Palindrome function

So I have these two functions at the top of my program: string deletespaces(string sentence){ sentence.erase(std::remove(sentence.begin(), sentence.end(), ' '), sentence.end()); return ...
0
votes
3answers
72 views

how to define a palindrome

I'm trying to define a palindrome. This is what I have so far but I'm not sure what is next can someone please help me. def palindrome(x): if x % 2==0: index1=0 index2=0 ...
1
vote
2answers
176 views

Palindromes in a Statement: Java

I need some help with a palindrome detector that I am doing for homework. I need the user to enter a statement, so more then one word, and the program needs to detect which words are a palindrome and ...
0
votes
0answers
30 views

segmentation fault in next palindrome spoj

I am getting compilation error ( segmentation fault ) when i am using this code for solving next palindrome problem http://www.spoj.com/problems/PALIN/. It is working properly without giving any error ...
0
votes
1answer
203 views

need algorithm to find the nth palindromic number

consider that 0 -- is the first 1 -- is the second 2 -- is the third ..... 9 -- is the 10th 11 -- is the 11th what is an efficient algorithm to find the nth palindromic ...
1
vote
8answers
347 views

Checking a string for a palindrome (java) (rookie status) [closed]

I am trying to check to see if, entered a string, that the string is a palindrome if it is display something positive if not... something negative (invalid) I am currently getting the answer invalid ...
0
votes
1answer
190 views

How can I convert this C into MIPS?

int Reverse(int num) { int remainder = 0; int rev = 0; while ( num != 0) { remainder = num % 10; num = num /10; rev = rev * 10 + remainder; } return ...
0
votes
2answers
65 views

Menu driven palindrome tester getting stack Overflow error

I'm doing this for a class, and I'm really not terribly awesome at this as I'm over a decade out of practice. I'm trying to write a program that displays a menu so the user can choose between methods ...
-2
votes
1answer
174 views

Please check my JavaScript program for checking a palindrome [closed]

<html> <body> <script language= javascript> var a = prompt("Enter a word") var b, c var n = a.length for(i = 0; i <= n; i++) ...
1
vote
4answers
498 views

Checking if input is palindrome using while loop (Python)

I'd like to know how do I check if an input is a palindrome with a while loop, using Python. Thanks: i tried this i = 0 n = len(msg_list) while i < n: palindrome = msg_list[i] if ...
0
votes
4answers
502 views

Palindrome program - string index out of range exception

I've written code for my CS class to identify if a user inputted string is a palindrome or not. I've gotten the code to work. However, whenever I execute the code I get this message: "Exception in ...

1 2 3 4