Translated some headings, "Read-Search-Ask" and "grueso" (#20120)

* Translated some headings, "Read-Search-Ask" and "grueso"

* Changed the translation again

I changed your suggestion and also realised that you're working with a vector as input, not a matrix as input.
This commit is contained in:
Víctor Dorado Javier
2018-12-13 10:03:10 +01:00
committed by Jaka Kranjc
parent 4f4577ed15
commit a6e5228117

View File

@ -4,17 +4,17 @@ title: Chunky Monkey
isRequired: true isRequired: true
challengeType: 5 challengeType: 5
videoUrl: '' videoUrl: ''
localeTitle: Mono grueso localeTitle: Mono fornido
--- ---
## Description ## Descripción
<section id="description"> Escriba una función que divida una matriz (primer argumento) en grupos de la longitud del <code>size</code> (segundo argumento) y los devuelva como una matriz bidimensional. Recuerda usar <a href="http://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck/19514" target="_blank">Read-Search-Ask</a> si te atascas. Escribe tu propio código. </section> <section id="description"> Escriba una función que divida un vector (primer argumento) en grupos de la longitud del <code>size</code> (segundo argumento) y los devuelva como una matriz bidimensional. Recuerda usar la técnica de <a href="http://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck/19514" target="_blank">Leer-Buscar-Preguntar</a> si te atascas. Escribe tu propio código. </section>
## Instructions ## Instrucciones
<section id="instructions"> <section id="instructions">
</section> </section>
## Tests ## Pruebas
<section id='tests'> <section id='tests'>
```yml ```yml
@ -45,7 +45,7 @@ tests:
```js ```js
function chunkArrayInGroups(arr, size) { function chunkArrayInGroups(arr, size) {
// Break it up. // Divídelo.
return arr; return arr;
} }
@ -59,10 +59,10 @@ chunkArrayInGroups(["a", "b", "c", "d"], 2);
</section> </section>
## Solution ## Solución
<section id='solution'> <section id='solution'>
```js ```js
// solution required // solución requerida
``` ```
</section> </section>