LeetCode Day 3 – Palindrome Number (Python)
A palindrome number is a number that reads the same forward and backward.
Examples
Example 1
Input: x = 121
Output: True
Because reading 121 from left to right and right to left gives the same number
mycodingchallenge.hashnode.dev4 min read