2021-06-15 00:49:18 -07:00
---
id: 594810f028c0303b75339ad8
2022-02-19 12:56:08 +05:30
title: Matrice a zig-zag
2021-06-15 00:49:18 -07:00
challengeType: 5
forumTopicId: 302348
dashedName: zig-zag-matrix
---
# --description--
2022-02-19 12:56:08 +05:30
Un array 'zig-zag' è una disposizione quadrata dei primi $N^2$ interi, dove i numeri aumentano sequenzialmente mentre si zig-zaga lungo le [anti-diagonali ](https://en.wiktionary.org/wiki/antidiagonal ) dell'array.
2021-06-15 00:49:18 -07:00
2022-02-19 12:56:08 +05:30
Per esempio, se come input viene fornito `5` , questo dovrebbe essere il risultato prodotto:
2021-06-15 00:49:18 -07: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 >
# --instructions--
2022-02-19 12:56:08 +05:30
Scrivi una funzione che prendere la dimensione della matrice a zig-zag, e ritorna la matrice corrispondente come un array a 2 dimensioni.
2021-06-15 00:49:18 -07:00
# --hints--
2022-02-19 12:56:08 +05:30
ZigZagMatrix dovrebbe essere una funzione.
2021-06-15 00:49:18 -07:00
```js
assert.equal(typeof ZigZagMatrix, 'function');
```
2022-02-19 12:56:08 +05:30
ZigZagMatrix deve restituire array.
2021-06-15 00:49:18 -07:00
```js
assert.equal(typeof ZigZagMatrix(1), 'object');
```
2022-02-19 12:56:08 +05:30
ZigZagMatrix dovrebbe restituire un array di array annidati.
2021-06-15 00:49:18 -07:00
```js
assert.equal(typeof ZigZagMatrix(1)[0], 'object');
```
2022-02-19 12:56:08 +05:30
ZigZagMatrix(1) dovrebbe restituire \[[0]].
2021-06-15 00:49:18 -07:00
```js
assert.deepEqual(ZigZagMatrix(1), zm1);
```
2022-02-19 12:56:08 +05:30
ZigZagMatrix(2) dovrebbe restituire \[[0, 1], [2, 3]].
2021-06-15 00:49:18 -07:00
```js
assert.deepEqual(ZigZagMatrix(2), zm2);
```
2022-02-19 12:56:08 +05:30
ZigZagMatrix(5) deve restituire la matrice specificata.
2021-06-15 00:49:18 -07:00
```js
assert.deepEqual(ZigZagMatrix(5), zm5);
```
# --seed--
## --after-user-code--
```js
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]
];
```
## --seed-contents--
```js
function ZigZagMatrix(n) {
return [[], []];
}
```
# --solutions--
```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;
}
```