2018-09-30 23:01:58 +01:00
---
title: Zig-zag matrix
id: 594810f028c0303b75339ad8
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302348
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
2019-03-05 11:57:57 +05:30
A 'zig-zag' array is a square arrangement of the first $N^2$ integers, where the numbers increase sequentially as you zig-zag along the array's < a href = "https://en.wiktionary.org/wiki/antidiagonal" > anti-diagonals< / a > .
For example, for the input < code > 5< / code > , the following result should be produced:
2018-09-30 23:01:58 +01:00
< pre >
0 1 5 6 14
2 4 7 13 15
3 8 12 16 21
9 11 17 20 22
10 18 19 23 24
< / pre >
< / section >
## Instructions
< section id = 'instructions' >
2019-03-05 11:57:57 +05:30
Write a function that takes the size of the zig-zag matrix, and returns the corresponding matrix as two-dimensional array.
2018-09-30 23:01:58 +01:00
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
2019-11-20 07:01:31 -08:00
- text: ZigZagMatrix should be a function.
2019-03-05 11:57:57 +05:30
testString: assert.equal(typeof ZigZagMatrix, 'function');
2019-11-20 07:01:31 -08:00
- text: ZigZagMatrix should return array.
2019-03-05 11:57:57 +05:30
testString: assert.equal(typeof ZigZagMatrix(1), 'object');
2019-11-20 07:01:31 -08:00
- text: ZigZagMatrix should return an array of nested arrays.
2019-03-05 11:57:57 +05:30
testString: assert.equal(typeof ZigZagMatrix(1)[0], 'object');
2019-11-20 07:01:31 -08:00
- text: ZigZagMatrix(1) should return [[0]].
2019-03-05 11:57:57 +05:30
testString: assert.deepEqual(ZigZagMatrix(1), zm1);
2019-11-20 07:01:31 -08:00
- text: ZigZagMatrix(2) should return [[0, 1], [2, 3]].
2019-03-05 11:57:57 +05:30
testString: assert.deepEqual(ZigZagMatrix(2), zm2);
2019-11-20 07:01:31 -08:00
- text: ZigZagMatrix(5) should return specified matrix.
2019-03-05 11:57:57 +05:30
testString: assert.deepEqual(ZigZagMatrix(5), zm5);
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
function ZigZagMatrix(n) {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return [[], []];
}
```
< / div >
### After Test
< div id = 'js-teardown' >
```js
2018-10-20 21:02:47 +03:00
const zm1 = [[0]];
const zm2 = [[0, 1], [2, 3]];
const zm5 = [
[0, 1, 5, 6, 14],
[2, 4, 7, 13, 15],
[3, 8, 12, 16, 21],
[9, 11, 17, 20, 22],
[10, 18, 19, 23, 24]
];
2018-09-30 23:01:58 +01:00
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
function ZigZagMatrix(n) {
const mtx = [];
for (let i = 0; i < n ; i + + ) {
mtx[i] = [];
}
let i = 1;
let j = 1;
for (let e = 0; e < n * n ; e + + ) {
mtx[i - 1][j - 1] = e;
if ((i + j) % 2 === 0) {
// Even stripes
if (j < n ) j + + ;
else i += 2;
if (i > 1) i--;
} else {
// Odd stripes
if (i < n ) i + + ;
else j += 2;
if (j > 1) j--;
}
}
return mtx;
}
```
< / section >