알고리즘

[프로그래머스][Swift] 약수의 합

moving 2022. 6. 26. 22:05
728x90

func solution(_ n:Int) -> Int {
    
    var result: Int = Int()
    
    if n > 0 {
        for i in 1...n {
            if n % i == 0 {
                result += i
            }
        }
        return result
    }
    return 0
}

print(solution(12))
print(solution(5))