[LeetCode] 7.Reverse Integer (문자열 연산)
728x90
반응형
숫자를 문자열로 변환해서 뒤집은 다음 연산한다
class Solution:
def reverse(self, x: int) -> int:
x=str(x)
x=x[::-1]
if x[-1]=='-':
x=int('-'+x[:-1])
x=int(x)
if x>2**31-1 or x<(-2**31-1):
return 0
else:
return x
728x90
반응형
'Leetcode' 카테고리의 다른 글
[Leetcode] two sum (python, javascript) (0) | 2020.11.23 |
---|---|
[LeetCode] 파이썬 알고리즘 인터뷰 리뷰 복습하며 다시 풀기 (2020.11.10) (0) | 2020.11.10 |
[LeetCode] 15. 3sum (python, javascript, two pointer) (0) | 2020.10.31 |
[LeetCode] 42. trapping rain water (python, javascript, two pointer) (0) | 2020.10.31 |
[LeetCode] 198. house robber (dp, python) (0) | 2020.10.30 |
TAGS.