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
Solution Comments
Show comments
Loading...
Problem Recent Solvers255
Suggested Problems
-
Find state names that start with the letter N
1472 Solvers
-
"Low : High - Low : High - Turn around " -- Create a subindices vector
589 Solvers
-
Create a vector whose elements depend on the previous element
794 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
400 Solvers
-
Number of Even Elements in Fibonacci Sequence
1674 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!
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.