Rotate Image

Problem

Write a function to rotate an n x n 2D matrix representing an image by 90 degrees clockwise. The rotation must be done in-place, meaning you should modify the input matrix directly without using an additional matrix for the operation.

Input:

matrix = [
    [1,4,7],
    [2,5,8],
    [3,6,9]
]

Output:

[
    [3,2,1],
    [6,5,4],
    [9,8,7]
]

Explanation: The matrix is rotated by 90 degrees clockwise, transforming its columns into rows in reverse order.

Explanation

This problem can be done in two steps. We first transpose the matrix, then reverse the elements in each row.

Step 1:

Transpose the matrix by swapping the elements across the diagonal. This can be done in-place by using a nested for loop to swap the elements.

Step 2:

Reverse the elements in each row of the matrix.

Solution