<leetCode> 9. Palindrome Number 많이 해본 문젠데, 쉽긴했다. 근데 내가 한 방법 말고도 있나 있으면 신기할듯 class Solution { func isPalindrome(_ x: Int) -> Bool { let arr = Array(String(x)) let count = arr.count for (idx, val) in arr.enumerated() { let st = idx let dt = count - st - 1 guard st 알고리즘 문제 풀기 2021.01.16