【Leetcode】867. 转置矩阵(Transpose Matrix)
程序员文章站
2024-03-22 11:17:10
...
Leetcode - 967 Transpose Matrix (Easy)
题目描述:行列互换。
Input: [[1,2,3],[4,5,6],[7,8,9]]
Output: [[1,4,7],[2,5,8],[3,6,9]]
public int[][] transpose(int[][] A) {
int[][] res = new int[A[0].length][A.length];
for (int i = 0; i < A.length; i++) {
for (int j = 0; j < A[0].length; j++) {
res[j][i] = A[i][j];
}
}
return res;
}
推荐阅读
-
【Leetcode】867. 转置矩阵(Transpose Matrix)
-
每日一题:867.转置矩阵
-
LeetCode.867-转置矩阵(Transpose Matrix)
-
【LeetCode刷题(简单程度)】867. 转置矩阵
-
Leetcode#867. Transpose Matrix(转置矩阵)
-
LeetCode每日一题: 转置矩阵(No.867)
-
leetcode【每日一题】867. 转置矩阵 java
-
[LeetCode] Transpose Matrix 转置矩阵
-
leetcode867_2-25每日题:转置矩阵
-
2021年2月25日 Leetcode每日一题:867. 转置矩阵