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;
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.
This will fail to detect certain palindromes which contain zero e.g. 10101 however the test suite doesn't (yet) contain any such.
There's something strange with the Cody test suites today...
Read a column of numbers and interpolate missing data
802 Solvers
Return elements unique to either input
478 Solvers
535 Solvers
Relative ratio of "1" in binary number
153 Solvers
203 Solvers