Given an integer, x, return TRUE if it is a palindrome; otherwise, FALSE.
x
A palindrome integer is one whose digits read the same from left to right and right to left.
Constraints:
−2−31≤-2^{-31} \leq−2−31≤ x ≤231 ...