0009. Palindrome Number
Easy | Math | 40 ms (93.69%), 13.2 MB (90.79%)
Last updated
Was this helpful?
Easy | Math | 40 ms (93.69%), 13.2 MB (90.79%)
Last updated
Was this helpful?
Source: GitHub:
Given an integer x
, return true
if x
is palindrome integer.
An integer is a palindrome when it reads the same backward as forward. For example, 121
is palindrome while 123
is not.