freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/rosetta-code/zig-zag-matrix.spanish.md

77 lines
2.1 KiB
Markdown
Raw Normal View History

2018-10-08 17:34:43 +00:00
---
title: Zig-zag matrix
id: 594810f028c0303b75339ad8
challengeType: 5
2018-10-10 20:20:40 +00:00
videoUrl: ''
localeTitle: Matriz zig-zag
2018-10-08 17:34:43 +00:00
---
## Description
2018-10-10 20:20:40 +00:00
<section id="description"> Una matriz de &quot;zig-zag&quot; es una disposición cuadrada de los primeros enteros $ N ^ 2 $, donde los números aumentan secuencialmente a medida que zigzaguea a lo largo de los <a href="https://en.wiktionary.org/wiki/antidiagonal">anti-diagonales de</a> la matriz. Por ejemplo, dado &quot;&#39;5&quot;&#39;, produzca esta matriz: <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> Escriba una función que tome el tamaño de la matriz en zig-zag y devuelva la matriz correspondiente como una matriz bidimensional. </section>
2018-10-08 17:34:43 +00:00
## Instructions
2018-10-10 20:20:40 +00:00
<section id="instructions">
2018-10-08 17:34:43 +00:00
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: ZigZagMatrix debe ser una función
testString: 'assert.equal(typeof ZigZagMatrix, "function", "ZigZagMatrix must be a function");'
- text: ZigZagMatrix debe devolver la matriz
testString: 'assert.equal(typeof ZigZagMatrix(1), "object", "ZigZagMatrix should return array");'
- text: ZigZagMatrix debe devolver una matriz de matrices de nidos
testString: 'assert.equal(typeof ZigZagMatrix(1)[0], "object", "ZigZagMatrix should return an array of nestes arrays");'
- text: 'ZigZagMatrix (1) debe devolver [[0]]'
testString: 'assert.deepEqual(ZigZagMatrix(1), zm1, "ZigZagMatrix(1) should return [[0]]");'
- text: 'ZigZagMatrix (2) debe devolver [[0, 1], [2, 3]]'
testString: 'assert.deepEqual(ZigZagMatrix(2), zm2, "ZigZagMatrix(2) should return [[0, 1], [2, 3]]");'
- text: ZigZagMatrix (5) debe devolver la matriz especificada
testString: 'assert.deepEqual(ZigZagMatrix(5), zm5, "ZigZagMatrix(5) must return specified matrix");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function ZigZagMatrix(n) {
// Good luck!
return [[], []];
}
2018-10-10 20:20:40 +00:00
2018-10-08 17:34:43 +00:00
```
</div>
### After Test
<div id='js-teardown'>
```js
console.info('after the test');
```
</div>
</section>
## Solution
<section id='solution'>
```js
2018-10-10 20:20:40 +00:00
// solution required
2018-10-08 17:34:43 +00:00
```
</section>