728x90
반응형
class Solution {
public int[] solution(int n) {
int[] answer = {};
int count = 0;
for(int i=1; i<=n; i++){
if(n%i==0){
count++;
}
}
answer = new int[count];
int j=0;
for(int i=1; i<=n; i++){
if(n%i==0){
answer[j] = i;
j++;
}
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 숫자 찾기 (0) | 2023.03.08 |
---|---|
프로그래머스 - 369게임 (0) | 2023.03.08 |
프로그래머스 - 외계행성의 나이 (0) | 2023.03.08 |
프로그래머스 - 피자 나눠 먹기 (2) (0) | 2023.03.07 |
프로그래머스 - 가장 큰 수 찾기 (0) | 2023.03.07 |