Easy
Given an integer n, return true if it is a palindrome (reads the same backward as forward). Negative numbers are not palindromes.
n
true
Input: n = 121 Output: true
Input: n = -121 Output: false
Input: n = 10 Output: false