[프로그래머스] 하샤드 수 작성일 2019-07-26 Edited on 2020-05-05 In 프로그래머스 Disqus: 프로그래머스 - 연습 문제 Review 입력받은 수를 자릿수대로 배열을 만들어 합계를 구한 다음 입력받은 수를 나누었음. Code (Python)123def solution(x): arr = list(map(int, list(str(x)))) return x % sum(arr) == 0