https://school.programmers.co.kr/learn/courses/30/lessons/120842
public int[][] solution(int[] num_list, int n) {
int[][] answer = new int[num_list.length/n][n];
int k = 0;
for (int i = 0; i < num_list.length/n; i++) {
for (int j = 0; j < n; j++) {
answer[i][j] = num_list[k++];
}
}
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
프로그래머스 n의 배수 고르기 (0) | 2022.12.10 |
---|---|
프로그래머스 A로 B만들기 (0) | 2022.12.10 |
프로그래머스 369게임 (0) | 2022.12.10 |
프로그래머스 7의 개수 (0) | 2022.12.10 |
프로그래머스 전화번호 목록 (Python) (0) | 2022.04.17 |