Chloe Jungah Kim
Chloe Jungah Kim
A blogger who writes about everything.

[Leetcode] 9. Palindrome Number

https://leetcode.com/problems/palindrome-number/
[Leetcode] 9. Palindrome Number

하나의 정수가 주어졌을 때, 해당 정수가 palindrome인지 확인하는 문제

  • Palindrome이란 : 회문. 거꾸로 읽었을 때도 제대로 읽었을 때와 동일한 경우

Example 1

  • Input : x = 121
  • Output : true

Example 2

  • Input : x = -121
  • Output : false
  • 거꾸로 읽으면 121-가 되므로 palindrome이 아니다.

Example 3

  • Input : x = 10
  • Output : false

Note

reverse 문자열 구하는 방법 : [::-1]

1
2
3
4
5
6
7
class Solution:
    def isPalindrome(self, x: int) -> bool:
        x = str(x)
        if x == x[::-1] :
            return True
        else : 
            return False