Transpose Matrix
Given a 2D integer array matrix, return the transpose of matrix.
The transpose of a matrix is the matrix flipped over its main diagonal, switching the matrix's row and column indices.
LeetCode Problem - 867
class Solution {
public int[][] transpo...
perfinsights.hashnode.dev1 min read