https://school.programmers.co.kr/learn/courses/30/lessons/12947
def h(x):
arr = list(str(x))
num = 0
for i in arr:
num += int(i)
if x % num == 0:
return True
else:
return False
def solution(x):
return h(x)
'알고리즘' 카테고리의 다른 글
프로그래머스)[1차] 캐시-python (0) | 2023.01.19 |
---|---|
프로그래머스)줄 서는 방법-python (0) | 2023.01.18 |
프로그래머스)1차 비밀지도- (0) | 2023.01.15 |
프로그래머스)햄버거 만들기 -python (0) | 2023.01.14 |
프로그래멋) 기사단원의 무기-python (0) | 2023.01.12 |