LeetCode 867 Transpose Matrix 解题报告

Posted yao1996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 867 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.

题目分析及思路

题目要求得到矩阵的转置矩阵。可先得到一个行数与原矩阵列数相等、列数与原矩阵行数相等的矩阵,再对原矩阵进行遍历。

python代码?

class Solution:

    def transpose(self, A: ‘List[List[int]]‘) -> ‘List[List[int]]‘:

        rows, cols = len(A), len(A[0])

        res = [[0] * rows for _ in range(cols)]

        for row in range(rows):

            for col in range(cols):

                res[col][row] = A[row][col]

        return res

                

        

 

以上是关于LeetCode 867 Transpose Matrix 解题报告的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode&Python] Problem 867. Transpose Matrix

LeetCode 867 Transpose Matrix 解题报告

leetcode 867. 转置矩阵(Transpose Matrix)

Golang语言版本LeetCode 867. Transpose Matrix 矩阵转置

LeetCode 867. 转置矩阵

867. Transpose Matrix