TIL(23.01.01) - Python 알고리즘 (프로그래머스 문자열 정수의 합)

이지영·2022년 12월 31일
0

TIL/WIL

목록 보기
105/110

sol1)

def solution(num_str):
    answer = [int (i) for i in list(num_str)]
    return sum(answer)

sol2)

def solution(num_str):
    return sum(map(int, list(num_str)))
profile
🐶🦶📏

0개의 댓글