[LeetCode] 48. Rotate Image - 문제풀이
Description 주어진 nxn 행렬을 시계방향으로 90도 회전시키는 문제입니다. 추가 공간 사용 없이 행렬안에서 값을 이동시켜서 풀어야합니다. You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees (clockwise). You have to rotate the image in-place, which means you have to modify the input 2D matrix directly. DO NOT allocate another 2D matrix and do the rotation. Example 1: Input: matrix = [[1,2,3],[4,5,6],[7,8,9]] Output:..