应用题-数组专题-螺旋矩阵
**很直观的做法** ```python class Solution: def generateMatrix(self, n: int) -> List[List[int]]: ans = [ [ 0 for _ in range( n ) ] for _
**很直观的做法** ```python class Solution: def generateMatrix(self, n: int) -> List[List[int]]: ans = [ [ 0 for _ in range( n ) ] for _