1
2
3
4
5
|
class Solution:
def isPalindrome(self, x: int) -> bool:
x=str(x)
if x== x[::-1] : return True
else : return False
|
cs |
팰린드롬 숫자 백준에도 많이 있는 유형이에요 쉽습니다
반응형
'python-algorithm' 카테고리의 다른 글
Leetcode 1470. Shuffle the Array (0) | 2021.07.13 |
---|---|
Leetcode 1431. Kids With the Greatest Number of Candies (0) | 2021.07.13 |
Leetcode 7. Reverse Integer (0) | 2021.07.12 |
Leetcode 1. Two Sum (0) | 2021.07.12 |
Leetcode 1672. Richest Customer Wealth (0) | 2021.07.12 |
댓글