Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

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.

Constraints:

  • n == matrix.length == matrix[i].length
  • 1 <= n <= 20
  • -1000 <= matrix[i][j] <= 1000

Examples:

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

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

Explanation: The image is rotated by 90 degrees clockwise.

Solutions

Transpose and Reverse

Time: O(n^2)Space: O(1)

The solution first transposes the matrix (i.e., swaps the row and column indices of each element), and then reverses each row to achieve the rotation effect.


public void rotate(int[][] matrix) {
  int n = matrix.length;
  for (int i = 0;
  i < n;
  i++) {
    for (int j = i;
    j < n;
    j++) {
      int temp = matrix[j][i];
      matrix[j][i] = matrix[i][j];
      matrix[i][j] = temp;
    }
  }
  for (int i = 0;
  i < n;
  i++) {
    for (int j = 0;
    j < n / 2;
    j++) {
      int temp = matrix[i][j];
      matrix[i][j] = matrix[i][n - j - 1];
      matrix[i][n - j - 1] = temp;
    }
  }
}

Difficulty: Medium

Category: Array and Matrix

Frequency: High

Company tags:

GoogleAmazonMicrosoft