Sha256: 7ee88ea18067f35f399840ffa9ae93942e90fb6ca50b0bfde685ac6104e9aa9e

Contents?: true

Size: 1.1 KB

Versions: 42

Compression:

Stored size: 1.1 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 TypeScript to
install the necessary dependencies:

http://exercism.io/languages/typescript

## Requirements

Install assignment dependencies:

```bash
$ yarn install
```

## Making the test suite pass

Execute the tests with:

```bash
$ yarn 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

42 entries across 42 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.179 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.178 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.177 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.176 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.175 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.174 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.173 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.172 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.171 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.170 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.169 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.167 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.166 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.165 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.164 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.163 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.162 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.161 tracks/typescript/exercises/spiral-matrix/README.md
trackler-2.2.1.160 tracks/typescript/exercises/spiral-matrix/README.md