Given an integer x, return true if x is a palindrome, and false otherwise.
A palindrome is a number that reads the same backward as forward. For example, 121 is a palindrome while 123 is not.
-2^31 <= x <= 2^31 - 1x = 121truex = -121falsex = 10false