Notice
Recent Posts
Recent Comments
Link
목록행렬 테두리 회전하기 (1)
뮁이의 개발새발
[JAVA] 프로그래머스 행렬 테두리 회전하기
이젠 행렬 돌리는거는 도사가 되었다 ... 어디 한번 돌려보시지,,, class Solution { static int[][] map; public int[] solution(int rows, int columns, int[][] queries) { int[] answer = new int[queries.length]; map = new int[rows][columns]; /* 초기 숫자 입력 부분 */ int cnt = 1; for (int i = 0; i < rows; i++) { for (int j = 0; j < columns; j++) { map[i][j] = cnt; cnt++; } } /* 돌리는 부분 */ for (int q = 0; q < queries.length; q++) { answ..
Algorithm
2021. 9. 14. 03:54