#!/usr/bin/python # yigid balaban # neetcode 2024 # easy / palindrome number def solution(x: int) -> bool: return str(x) == str(x)[::-1] print(solution(121) == True) print(solution(0) == True) print(solution(-121) == False) print(solution(10) == False)