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 <= A.length <= 10001 <= A[0].length <= 1000
Solutions
π§ Cpp
Last updated
Was this helpful?