x라는 integer가 주어졌을 때 x가 palindrome이면 true 아니면 false로 return한다.
(palindrome이라면 거꾸로 읽어도 원래 x와 같은 경우를 말한다.)
class Solution:
def isPalindrome(self, x: int) -> bool:
if x<0:
return False
return str(x)==str(x)[::-1]
'👩💻Developer > Leetcode' 카테고리의 다른 글
[Easy][Python] Check if Two String Arrays are Equivalent (0) | 2022.11.20 |
---|---|
[Easy][Python] Range Sum of BST (0) | 2022.10.28 |
[Easy][Python] Root Equals Sum of Children (0) | 2022.10.25 |
[Easy][Python] Count of Matches in Tournament (0) | 2022.10.23 |
[Easy][Python] Defanging an IP Address (0) | 2022.10.23 |
댓글