나의 코드

def solution(n):
    answer = [int(i) for i in reversed(str(n))]
    return answer

+ Recent posts