Sha256: 940f1130436e0861744ac7f7efe7220323e04f819743afe585befae3b1b0799c
Contents?: true
Size: 942 Bytes
Versions: 131
Compression:
Stored size: 942 Bytes
Contents
# Spiral Matrix 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 ``` # Running the tests You can run all the tests for an exercise by entering ```sh $ gradle test ``` in your terminal. ## Source Reddit r/dailyprogrammer challenge #320 [Easy] Spiral Ascension. [https://www.reddit.com/r/dailyprogrammer/comments/6i60lr/20170619_challenge_320_easy_spiral_ascension/](https://www.reddit.com/r/dailyprogrammer/comments/6i60lr/20170619_challenge_320_easy_spiral_ascension/) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
131 entries across 131 versions & 1 rubygems