Moments of growth

[Lv1 Kotlin] 하샤드 수 본문

카테고리 없음

[Lv1 Kotlin] 하샤드 수

뮤링이 2022. 9. 18. 00:22

[내 코드]

class Solution {
    fun solution(x: Int): Boolean = x%(x.toString().map{it.toString().toInt()}.sum())==0
}

 

Comments