[leet code - easy] Palindrome Number 문제 풀이
Description Given an integer x, return true if x is a palindrome, and false otherwise. 리버스 된 게 x랑 같으면 true 라는 것 같음 입출력 예시 Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left. Example 2: Input: x = -121 Output: false Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome. Exam..
2023.08.22