728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12947
Code
class Solution {
fun solution(x: Int): Boolean = (x % (x.toString().sumOf { it.digitToInt() })) == 0
}
이것도 생각보다 간단했다.
x의 자릿수만큼 계산하는 것이 아닌, 그냥 String으로 만들고 int로 합을 구한다.
그렇게해서 x를 나눠보고 나눠떨어지면 true, 아니면 false다.
728x90