欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Leetcode 867.转置矩阵(Transpose Matrix)

程序员文章站 2024-03-22 11:12:22
...

Leetcode 867.转置矩阵

1 题目描述(Leetcode题目链接

  给定一个矩阵 A, 返回 A 的转置矩阵。

矩阵的转置是指将矩阵的主对角线翻转,交换矩阵的行索引与列索引。

输入:[[1,2,3],[4,5,6],[7,8,9]]
输出:[[1,4,7],[2,5,8],[3,6,9]]
输入:[[1,2,3],[4,5,6]]
输出:[[1,4],[2,5],[3,6]]

提示:

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

2 题解

  暴力解

class Solution:
    def transpose(self, A: List[List[int]]) -> List[List[int]]:
        m, n = len(A), len(A[0])
        res = []
        for i in range(n):
            t = []
            for j in range(m):
                t.append(A[j][i])
            res.append(t)
        return res

使用numpy

class Solution:
    def transpose(self, A: List[List[int]]) -> List[List[int]]:
        import numpy as np
        return np.array(A).T

使用zip函数

class Solution:
    def transpose(self, A: List[List[int]]) -> List[List[int]]:
        return zip(*A)