문제 설명
처음 코드
def solution(num_str): return sum(map(int, num_str))
동작 순서를 알아보자
map() 에 대해서 다시 한번 짚고 넘어가자!