Notice
Recent Posts
Recent Comments
Link
S E P H ' S
[Python] 하샤드 수 본문
def solution(x):
strx = str(x)
n = 0
for i in strx:
n += int(i)
if x % n == 0:
answer = True
else:
answer = False
return answer
다른 풀이
def solution(x):
return x % sum([int(n) for n in str(x)]) == 0
'Algorithm > Programmers' 카테고리의 다른 글
[Python] 최대공약수와 최소공배수 (0) | 2021.06.25 |
---|---|
[Python] 콜라츠 추측 (0) | 2021.06.25 |
[Python] 핸드폰 번호 가리기 (0) | 2021.06.24 |
[Python] 행렬의 덧셈 (0) | 2021.06.24 |
[Python] x만큼 간격이 있는 n개의 숫자 (0) | 2021.06.24 |