[Programmers] 행렬 테두리 회전하기
https://school.programmers.co.kr/learn/courses/30/lessons/77485 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제 설명 배열을 다루는 능력을 시험하는 구현 문제이다. 알고리즘은 크게 없이 주어진 조건대로 구현하면 된다. 코드 class Solution { public int[] solution(int rows, int columns, int[][] queries) { int[] answer = new int[queries.length]; int[][] matrix = new int[rows][column..
2023.09.13