题目描述
给定一个矩阵 A, 返回 A 的转置矩阵。
矩阵的转置是指将矩阵的主对角线翻转,交换矩阵的行索引与列索引。
示例 1:
输入:[[1,2,3],[4,5,6],[7,8,9]]
输出:[[1,4,7],[2,5,8],[3,6,9]]
示例 2:
输入:[[1,2,3],[4,5,6]]
输出:[[1,4],[2,5],[3,6]]
提示:
1 <= A.length <= 1000
1 <= A[0].length <= 1000
题目理解
- 定义一个空的列表
- 将列表的行数和列数赋值
- 遍历行数
- 将原始矩阵的一列的元素抽取出来添加到一行中形成新的列表
- 每遍历一次,就将新的列表添加到空列表,最终构成矩阵
代码实现
class Solution(object):
def transpose(self, A):
"""
:type A: List[List[int]]
:rtype: List[List[int]]
"""
res = []
rows ,cols = len(A),len(A[0])
for i in range(cols):
item = []
for j in range(rows):
item.append(A[j][i])
res.append(item)
return res