Problem 172. Test if a Number is a Palindrome without using any String Operations
Description
Given an integer X, determine if it is a palindrome number. That is, X is equal to the X with the digits reversed (with no leading 0s). The twist is that your code cannot use any function or variable name that has either "str", "eval", "flip" or "printf" in it.
Example
X = 123454321; Y = true;
X = 1234; Y = false;
Solution Stats
Problem Comments
-
2 Comments
Nice expression for the usage test. Maybe one can add function "dec2base", cause the return type is a String.
The problem description should mention that dec2base isn't allowed either.
Solution Comments
Show commentsProblem Recent Solvers242
Suggested Problems
-
Replace NaNs with the number that appears to its left in the row.
3026 Solvers
-
Back to basics 13 - Input variables
270 Solvers
-
Back to basics 21 - Matrix replicating
1710 Solvers
-
Remove the two elements next to NaN value
666 Solvers
-
Back to basics - mean of corner elements of a matrix
436 Solvers
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!