reverse str2 [LeetCode] Palindrom Number 파이썬 (reverse str) class Solution: def isPalindrome(self, x: int) -> bool: if str(x) == str(x)[::-1]: return True else: return False Revese Integer에 있던 str reverse 활용함 메모리에서는 50%인데 시간 상위 솔루션은 class Solution: def isPalindrome(self, x: int) -> bool: if x bool: x = str(x) if x == x[::-1]: return True return False str전환을 한번만해서 빠르게 계산되도록 메모리 측면에서의 상위 솔루션 class Solution: def isPalindrome(self, x: int) -> bool: if x < 0:.. 2021. 3. 25. [LeetCode] Revese Integer 파이썬 (list comprehension, reverse str) 36ms 걸린 내 솔루션 class Solution: def reverse(self, x: int) -> int: sign = "" if x (2**31)-1 or int(answer) int: if x > 0: result = int(str(x)[::-1]) else: result = -int(str(abs(x))[::-1.. 2021. 3. 25. 이전 1 다음