题解 | 顺时针打印矩阵
顺时针打印矩阵
https://www.nowcoder.com/practice/9b4c81a02cd34f76be2659fa0d54342a
# -*- coding:utf-8 -*-
class Solution:
# matrix类型为二维列表,需要返回列表
def printMatrix(self, matrix):
# write code here
ans = []#存储返回输出结果的列表
while matrix:#对矩阵进行逆时针截取操作
ans += matrix[0]
matrix = list(zip(*matrix[1:]))[::-1]
return ans
正浩创新EcoFlow公司福利 608人发布
