프로그래머스의 코딩테스트 연습문제 중 하샤드 수 문제의 정답입니다.

Python 코드

def solution(n):
    return n % sum([int(c) for c in str(n)]) == 0



감사합니다!