def solution(x):
a = list(str(x))
count = 0
for i in a:
count += int(i)
if x % count == 0:
answer = True
else:
answer = False
return answer
'Python > 프로그래머스' 카테고리의 다른 글
프로그래머스 - 배열 두 배 만들기 (python) (0) | 2022.10.29 |
---|---|
프로그래머스 - 핸드폰 번호 가리기 (0) | 2022.08.22 |
서울에서 김서방 찾기 (0) | 2022.07.29 |
프로그래머스 - X만큼 간격이있는 n 개의 숫자 (0) | 2022.07.05 |
프로그래머스 - 수박수박수박수박수박수? (0) | 2022.07.03 |