본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 약수의 합

import java.util.stream.*;

class Solution {
    public int solution(int n) {
        return IntStream.range(1, n + 1).filter(i -> n % i == 0).sum();
    }
}