Leetcode 54. 螺旋矩阵(python)

class Solution:
    def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
        res=[]
        m=len(matrix)
        if m==0:
            return res
        else:
            n=len(matrix[0])
            if n==0:
                return res
        count=(m+1)//2
        k=0
        su=m*n
        cc=0
        while k
Leetcode 54. 螺旋矩阵(python)_第1张图片
Leetcode 54. 螺旋矩阵(python)

你可能感兴趣的:(Leetcode 54. 螺旋矩阵(python))