Sha256: 1712a5bb2c9d5dbf0795eb4caccc7b83a0ee8a4c9764f66a912a4ecdb595c2e9

Contents?: true

Size: 1.25 KB

Versions: 5

Compression:

Stored size: 1.25 KB

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

```plain
1 2 3
8 9 4
7 6 5
```

##### Spiral matrix of size 4

```plain
 1  2  3 4
12 13 14 5
11 16 15 6
10  9  8 7
```

## Submitting Exercises

Note that, when trying to submit an exercise, make sure the solution is in the `exercism/python/<exerciseName>` directory.

For example, if you're submitting `bob.py` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/python/bob/bob.py`.

For more detailed information about running tests, code style and linting,
please see the [help page](http://exercism.io/languages/python).

## 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

5 entries across 5 versions & 1 rubygems

Version Path
trackler-2.2.1.105 tracks/python/exercises/spiral-matrix/README.md
trackler-2.2.1.104 tracks/python/exercises/spiral-matrix/README.md
trackler-2.2.1.103 tracks/python/exercises/spiral-matrix/README.md
trackler-2.2.1.102 tracks/python/exercises/spiral-matrix/README.md
trackler-2.2.1.101 tracks/python/exercises/spiral-matrix/README.md