본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 하샤드 수

by 현장 2022. 1. 9.

-코드

def solution(x):
    n, s = str(x), 0
    for i in n:
        s += int(i)
    answer = True if x % s == 0 else False
    return answer