leet code

개발자의 삶/Algorithm

[LeetCode] Palindrome Number (with Go)

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 a palindrome while 123 is not. Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left. 뭔말인가 했다 palindrome 이 무슨 뜻인지 몰라서 검색을 해보려다가 예제를 보니 대충 주어지는 숫자(혹은 문자) 를 역순 정렬했을 때도 이전과 같은 것을 의미하는것 같다 ex, 1..

Kedric
'leet code' 태그의 글 목록