반응형
문제
https://leetcode.com/problems/palindrome-number/
정답
function isPalindrome(x: number): boolean {
let result = true;
let stringX = x.toString();
for(let i = 0; i < stringX.length; i++) {
if(stringX[i] !== stringX.at(-i -1)) {
result = false;
}
}
return result
};
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode/Typescript] 1. Two Sum 정답 (0) | 2022.08.24 |
---|