// Palindrome Number — EASY
// Category: math
Given an integer `x`, return `true` if `x` is a palindrome, and `false` otherwise.
An integer is a palindrome when it reads the same forward and backward.
**Follow-up:** Could you solve it without converting the integer to a string?
Example: x = 121
Output: true