본문 바로가기
코테 준비/프로그래머스

[프로그래머스] Level 1. 자릿수 더하기

by 귤이두번 2022. 1. 28.

 

 

def solution(n):
    str_n = str(n)
    
    answer = 0
    
    for i in str_n:
        answer += int(i)

    return answer

 

바로 생각나는대로 빨리 풀었다

 

숫자를 문자열로 받아서 앞에서부터 하나씩 더하면 된다

댓글