설명
Given an integer x, return true if x is palindrome integer.
An integer is a palindrome when it reads the same backward as forward. For example, 121 is palindrome while 123 is not.
예시
제한
- -231 <= x <= 231 - 1
풀이
class Solution:
def isPalindrome(self, x: int) -> bool:
try:
return x == int(str(x)[::-1])
except:
pass
'Algorithm' 카테고리의 다른 글
[프로그래머스 Level2] 최댓값과 최솟값 (0) | 2021.09.03 |
---|---|
[프로그래머스 Level2] 전화번호 목록 (0) | 2021.09.03 |
[LeetCode] Two Sum (0) | 2021.09.02 |
[프로그래머스 Level2] 피보나치 수 (0) | 2021.09.01 |
[프로그래머스 Level2] 가장 큰 수 (0) | 2021.09.01 |