공부/코딩테스트

[프로그래머스] 평균 구하기, 하샤드 수

ghhong 2021. 1. 8. 19:54

평균 구하기

나의 답 :

def solution(arr):
    return sum(arr)/len(arr)

 

 

하샤드 수

나의 답 :

def solution(x):
    a=str(x)
    s=0
    for i in a:
        s+=int(i)
    return x%s==0