From a6e5228117acf3bc50f92ec438c55f2ce87cb65d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Dorado=20Javier?= Date: Thu, 13 Dec 2018 10:03:10 +0100 Subject: [PATCH] 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. --- .../chunky-monkey.spanish.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.spanish.md b/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.spanish.md index b4f9dbacda..4cc1baa081 100644 --- a/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.spanish.md +++ b/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/chunky-monkey.spanish.md @@ -4,17 +4,17 @@ title: Chunky Monkey isRequired: true challengeType: 5 videoUrl: '' -localeTitle: Mono grueso +localeTitle: Mono fornido --- -## Description -
Escriba una función que divida una matriz (primer argumento) en grupos de la longitud del size (segundo argumento) y los devuelva como una matriz bidimensional. Recuerda usar Read-Search-Ask si te atascas. Escribe tu propio código.
+## Descripción +
Escriba una función que divida un vector (primer argumento) en grupos de la longitud del size (segundo argumento) y los devuelva como una matriz bidimensional. Recuerda usar la técnica de Leer-Buscar-Preguntar si te atascas. Escribe tu propio código.
-## Instructions +## Instrucciones
-## Tests +## Pruebas
```yml @@ -45,7 +45,7 @@ tests: ```js function chunkArrayInGroups(arr, size) { - // Break it up. + // Divídelo. return arr; } @@ -59,10 +59,10 @@ chunkArrayInGroups(["a", "b", "c", "d"], 2);
-## Solution +## Solución
```js -// solution required +// solución requerida ```