sw expert academy-2058. 자릿수 더하기-python
풀이
- 입력받은 수의 각 자리를 list에 할당한 후 sum함수로 합을 구한다
코드
# https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QPRjqA10DFAUq&categoryId=AV5QPRjqA10DFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=1&pageSize=10&pageIndex=1
# sw expert academy, d1: 2058. 자릿수 더하기, python3
def solve(n: str) -> int:
return sum(list(map(int, str(n))))
if __name__ == '__main__':
n = str(input())
print(solve(n))
결과
출처 & 깃허브
Author And Source
이 문제에 관하여(sw expert academy-2058. 자릿수 더하기-python), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cosmos/sw-expert-academy-2058.-자릿수-더하기-python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)