728x90
반응형
class Solution {
public int[][] solution(int[] num_list, int n) {
int[][] answer = new int[num_list.length/n][n];
int count = 0;
for(int i=0; i<num_list.length/n; i++){
for(int j=0; j<n; j++){
answer[i][j] = num_list[count];
count++;
}
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 가까운 수 (0) | 2023.03.14 |
---|---|
프로그래머스 - 팩토리얼 (0) | 2023.03.14 |
프로그래머스 - A로 B 만들기 (0) | 2023.03.14 |
프로그래머스 - 중복된 문자 제거 (0) | 2023.03.09 |
프로그래머스 - 합성수 찾기 (0) | 2023.03.09 |