Sha256: 8ab39c02dd9f2f77fe3c50b4e936c5253bbe1a05f7bcf4c22b587b9c6b5365cb

Contents?: true

Size: 1.24 KB

Versions: 68

Compression:

Stored size: 1.24 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

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

## Setup

Go through the setup instructions for ECMAScript to
install the necessary dependencies:

http://exercism.io/languages/ecmascript

## Requirements

Install assignment dependencies:

```bash
$ npm install
```

## Making the test suite pass

Execute the tests with:

```bash
$ npm test
```

In the test suites all tests but the first have been skipped.

Once you get a test passing, you can enable the next one by
changing `xtest` to `test`.


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

68 entries across 68 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.138 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.137 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.136 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.135 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.134 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.133 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.132 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.131 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.130 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.129 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.128 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.127 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.126 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.125 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.124 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.123 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.122 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.121 tracks/ecmascript/exercises/spiral-matrix/README.md
trackler-2.2.1.120 tracks/ecmascript/exercises/spiral-matrix/README.md