Any language. Any algorithm (except making the number a string and then reversing the string).
Also, I actually have to do this, and I'll be posting my solution too.
|
Any language. Any algorithm (except making the number a string and then reversing the string). Also, I actually have to do this, and I'll be posting my solution too. |
|||||||
|
|
This is one of the Project Euler problems. When I solved it in Haskell I did exactly what you suggest, convert the number to a String. It's then trivial to check that the string is a pallindrome. If it performs well enough, then why bother making it more complex? Being a pallindrome is a lexical property rather than a mathematical one. |
|||||||
|
|
For any given num:
If n == rev then num is a palindrome:
|
|||||||||||
|
|
|||
|
|
|
|||
|
|
|
Push each individual digit onto a stack, then pop them off. If it's the same forwards and back, it's a palindrome. |
|||||
|
|
Just for fun, this one also works.
|
|||
|
|
|
I answered the Euler problem using a very brute-forcy way. Naturally, there was a much smarter algorithm at display when I got to the new unlocked associated forum thread. Namely, a member who went by the handle Begoner had such a novel approach, that I decided to reimplement my solution using his algorithm. His version was in Python (using nested loops) and I reimplemented it in Clojure (using a single loop/recur). Here for your amusement:
There were Common Lisp answers as well, but they were ungrokable to me. |
|||
|
|
Pop off the first and last digits and compare them until you run out. There may be a digit left, or not, but either way, if all the popped off digits match, it is a palindrome. |
|||
|
|
|
Here is an Scheme version that constructs a function that will work against any base. It has a redundancy check: return false quickly if the number is a multiple of the base (ends in 0). And it doesn't rebuild the entire reversed number, only half. That's all we need.
|
|||
|
|
|
a method with a little better constant factor than @sminks method:
|
|||
|
|
|
here's a f# version:
|
||||
|
|
Why dismiss that solution? It's easy to implement and readable. If you were asked with no computer at hand whether In Python at least, the slogan 'string operations are slower than arithmetic' is actually false. I compared Smink's arithmetical algorithm to simple string reversal In low level languages (C/C++) the slogan might hold, but one risks overflow errors with large numbers.
Results in seconds (lower is better):
|
||||
|
|
|
A number is palindromic if its string representation is palindromic:
|
|||
|
|
|
||||
|
|
|
Try this:
|
||||
|
|