자연수 뒤집어 배열로 만들기
def solution(n): return [int(x) for x in str(n)][::-1]
이전 포스트 자릿수 더하기
다음 포스트 정수 내림차순으로 배치하기