[leetcode] 59. Spiral Matrix II

    xiaoxiao2025-03-03  7

    Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.

    For example, Given n = 3,

    You should return the following matrix: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5 ] ] 解法一:

    转载请注明原文地址: https://ju.6miu.com/read-1296844.html
    最新回复(0)