Sha256: 0863534e45b30c82cf276fd23aae9263037dc45fb56968339d2c8afdb3a87d10
Contents?: true
Size: 518 Bytes
Versions: 110
Compression:
Stored size: 518 Bytes
Contents
Given the size, return a square matrix of numbers in spiral order. The matrix should be filled with natural numbers, starting from 1 in the top-left corner, increasing in an inward, clockwise spiral order, like these examples: ###### Spiral matrix of size 3 ```text 1 2 3 8 9 4 7 6 5 ``` ###### Spiral matrix of size 4 ```text 1 2 3 4 12 13 14 5 11 16 15 6 10 9 8 7 ``` ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
110 entries across 110 versions & 1 rubygems