Create an n-by-n matrix with elements ranging from 1 to n^2 in a rectangular spiral pattern.

Example if n = 5 :

    21    22    23    24    25
    20     7     8     9    10
    19     6     1     2    11
    18     5     4     3    12
    17    16    15    14    13

Solution Stats

124 Solutions

85 Solvers

Last Solution submitted on Sep 28, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...