def solution(x):
return x % sum([int(c) for c in str(x)]) == 0
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 문자열 다루기 기본 (0) | 2020.07.08 |
---|---|
[프로그래머스/python] 행렬의 덧셈 (0) | 2020.07.08 |
[프로그래머스/python] x만큼 간격이 있는 n개의 숫자 (0) | 2020.07.07 |
[프로그래머스/python] 가운데 글자 가져오기 (0) | 2020.07.06 |
[프로그래머스/python] 같은 숫자는 싫어 (0) | 2020.07.06 |