https://programmers.co.kr/learn/courses/30/lessons/12947
func solution(_ x:Int) -> Bool { let harshard = String(x).map {Int(String($0))!}.reduce(0, +) return x % harshard == 0 }