Transpose Matrix

Given a matrix A, return the transpose of A.

The transpose of a matrix is the matrix flipped over it's main diagonal, switching the row and column indices of the matrix.

Example 1:

Example 2:

Note:

  1. 1 <= A.length <= 1000

  2. 1 <= A[0].length <= 1000

Solutions

🧠 Cpp

Last updated

Was this helpful?