본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 2차원으로 만들기

by 올리브영 2023. 3. 14.
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
반응형