728x90
반응형
class Solution {
public int solution(int n) {
int answer = 0;
for(int i = 1; i<n+1; i++){
if(n % i == 0){
answer += 1;
}
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 짝수는 싫어요 (1) | 2023.02.23 |
---|---|
프로그래머스 - 배열의 유사도 (0) | 2023.02.23 |
프로그래머스 - 중복된 숫자 개수 (0) | 2023.02.23 |
프로그래머스 - 배열 두배 만들기 (0) | 2023.02.23 |
프로그래머스 - 아이스 아메리카노 (0) | 2023.02.23 |