class Solution {
public int[][] solution(int[][] arr) {
int h = arr.length;
int w = arr[0].length;
int num = h > w ? h : w;
int[][] answer = new int[num][num];
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[0].length; j++) {
answer[i][j] = arr[i][j];
}
}
return answer;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/MySQL] 과일로 만든 아이스크림 고르기 (0) | 2023.10.01 |
---|---|
[프로그래머스/자바] 로그인 성공? (0) | 2023.09.25 |
[프로그래머스/자바] 7의 개수 (0) | 2023.09.23 |
[프로그래머스/자바] 크기가 작은 부분 문자열 (0) | 2023.09.23 |
[프로그래머스/자바] 빈 배열에 추가, 삭제하기 (0) | 2023.09.23 |