diff --git a/exercises/032-javascriptObjects/README.es.md b/exercises/032-javascriptObjects/README.es.md new file mode 100644 index 000000000..73885fcbe --- /dev/null +++ b/exercises/032-javascriptObjects/README.es.md @@ -0,0 +1,106 @@ +# `032` JavaScript Objects + +A menudo te encontrarás queriendo guardar más información en menos espacio, especialmente si está toda relacionada. + +Por ejemplo, digamos que queremos representar autos dentro de variables: + +```js +let car1Model = "Corolla"; +let car1Make = "Toyota"; +let car1Color = "green"; +let car1Year = 2015; + +let car2Model = "Santa Fe"; +let car2Make = "Hyundai"; +let car2Color = "purple"; +let car2Year = 2013; + +//... (¿entiendes la idea?) +``` + + +Hay un enfoque óptimo para esto, son los **objetos**. Los **objetos (objects)** son un tipo de variable que contienen información (otras variables) en forma de `key:value`. + +Entonces, si queremos traducir (y optimizar) las variables desde car (auto) a un Object, hacemos: + +```js +const car1 = {model: "Corolla", make: "Toyota", color: "green", year: 2015}; +``` + +Puedes ver el `key:value` separado por una coma. + +Y para que nosotros (los desarrolladores) podamos leerlas más fácilmente las escribimos así: + +```js +const car1 = { + model: "Corolla", + make: "Toyota", + color: "green", + year: 2015 +}; +``` + +Parece una función, ¿verdad? Pero no lo es. + +Ahora estamos guardando información de una forma más organizada, y si queremos obtener esa información podemos hacer: + +```js +console.log(car1.model); //imprime el modelo de car1 en la consola +``` + +Podemos tener todos los tipos de variables conocidas en JavaScript como valor(`value`) de cualquier `key` (¡incluyendo objetos!). Ahora imagina las posibilidades... + +```js +var person = { + name: "John", //String + lastName: "Doe", + age: 35, //Número + gender: "male", + luckyNumbers: [7, 11, 13, 17], //Array + significantOther: person2 //Objeto, sí, la misma variable/objeto definida después +}; + +var person2 = { + name: "Jane", + lastName: "Doe", + age: 38, + gender: "female", + luckyNumbers: [2, 4, 6, 8], + significantOther: person +}; + +var family = { + lastName: "Doe", + members: [person, person2] //Array de objetos +}; +``` + +Entonces, si en este escenario queremos saber el nombre del primer miembro de la familia Doe, decimos: + +```js +console.log(family.members[0].name); +``` + +O el 3er número de la suerte del `significantOther` del segundo miembro de la familia Doe: + +```js +console.log(family.members[1].significantOther.luckyNumbers[2]); +``` + +Cosas sencillas :) + +## 📝 Instrucciones: + +1. De forma automatizada, cambia el cuarto número de la suerte de John Doe (`luckyNumber`) a `33` (usa un comando, no cambies manualmente el código). + +2. De forma automatizada, crea una nueva persona y añádela al objeto familia. `Jimmy Doe`, `13`, `male`(masculino), `luckyNumbers` (números de la suerte): `1`, `2`, `3`, `4`; `significantOther: null`. + +3. Ahora por favor imprime (`console.log()`) la SUMA de todos los números de la suerte (`luckyNumbers`) de la familia Doe. + +## 💡 Pistas: + ++ Puedes obtener cada array de números de la suerte (`luckyNumbers`) desde el objeto de cada persona dentro del objeto familia. + ++ Una vez obtengas cada array, solo has un loop sobre él sumando cada elemento (como hemos hecho hasta ahora). Luego obtén el total de la suma de los 3 miembros de la familia. + ++ `null` también es un objeto. diff --git a/exercises/032-javascriptObjects/README.md b/exercises/032-javascriptObjects/README.md new file mode 100644 index 000000000..55a18044b --- /dev/null +++ b/exercises/032-javascriptObjects/README.md @@ -0,0 +1,103 @@ +# `032` JavaScript Objects + +Often you'll find yourself wanting to save more information in less space, especially if it's all related. + +For example, let's say that we want to represent cars into variables: + +```js +let car1Model = "Corolla"; +let car1Make = "Toyota"; +let car1Color = "green"; +let car1Year = 2015; + +let car2Model = "Santa Fe"; +let car2Make = "Hyundai"; +let car2Color = "purple"; +let car2Year = 2013; + +//... (you get the idea) +``` + +There's an optimized approach to this, it is called **Objects**. **Objects** are a type of variable that contains information (other variables) in a **key:value** manner. + +So if we want to translate (and optimize) the variables from the car into an Object, we do: + +```js +const car1 = {model: "Corolla", make: "Toyota", color: "green", year: 2015}; +``` + +You can see the `key:value` separated by a comma. And for us (developers) to read it easier we write it like this: + +```js +const car1 = { + model: "Corolla", + make: "Toyota", + color: "green", + year: 2015 +}; +``` + +Looks like a function, right? But it's not. + +Now we are storing information in a more organized way, and if we want to get that information we can do: + +```js +console.log(car1.model); //prints the model of car1 in the console +``` + +We can have all of the known types of variables defined as the value of any `key` (including objects!). Now imagine the possibilities... + +```js +var person = { + name: "John", //String + lastName: "Doe", + age: 35, //Number + gender: "male", + luckyNumbers: [7, 11, 13, 17], //Array + significantOther: person2 //Object, yes, the same variable/object defined after +}; + +var person2 = { + name: "Jane", + lastName: "Doe", + age: 38, + gender: "female", + luckyNumbers: [2, 4, 6, 8], + significantOther: person +}; + +var family = { + lastName: "Doe", + members: [person, person2] //Array of objects +}; +``` + +So, in this scenario if we want to know the name of the first member of the Doe family we do: + +```js +console.log(family.members[0].name); +``` + +Or the 3rd lucky number of the `significantOther` of the second member of the Doe family: + +```js +console.log(family.members[1].significantOther.luckyNumbers[2]); +``` + +Easy stuff :) + +## 📝 Instructions: + +1. Programmatically, change the fourth `luckyNumber` of John Doe to `33` (use a command, don't manually change the code). + +2. Programmatically, create a new person and add it to the family object. `Jimmy Doe`, `13`, `male`, `luckyNumbers`: `1`, `2`, `3`, `4`; `significantOther: null`. + +3. Now please print (`console.log()`) the SUM of all the `luckyNumbers` of the Doe family. + +## 💡 Hint: + ++ You can get each array of `luckyNumbers` from each person object inside the family object. + ++ Once you get each array, just loop over it adding every element (like we've been doing so far). And then add each sum of the 3 family members. + ++ `null` is also an object. diff --git a/exercises/032-javascriptObjects/app.js b/exercises/032-javascriptObjects/app.js new file mode 100644 index 000000000..fa1e623a1 --- /dev/null +++ b/exercises/032-javascriptObjects/app.js @@ -0,0 +1,38 @@ +var person = { + name: "John", //String + lastName: "Doe", + age: 35, //Number + gender: "male", + luckyNumbers: [7, 11, 13, 17], //Array + significantOther: person2 //Object, yes, the same variable/object defined after +}; + +var person2 = { + name: "Jane", + lastName: "Doe", + age: 38, + gender: "female", + luckyNumbers: [2, 4, 6, 8], + significantOther: person +}; + +var family = { + lastName: "Doe", + members: [person, person2] //Array of objects, don't forget to add Jimmy +}; + + +function addAllFamilyLuckyNumbers(anArray){ + let sumOfAllLuckyNumbers = 0; //sumOfAllLuckyNumbers is a number, the sum of all lucky numbers. + + //To-Do: loop and add; consider nested loops + //Hint: use the anArray variable to get all of the lucky numbers + + return sumOfAllLuckyNumbers; +} + +//Enter all your code here: + + +//Do not make changes below: +console.log(addAllFamilyLuckyNumbers(family.members)); diff --git a/exercises/032-javascriptObjects/solution.hide.js b/exercises/032-javascriptObjects/solution.hide.js new file mode 100644 index 000000000..38a8923b1 --- /dev/null +++ b/exercises/032-javascriptObjects/solution.hide.js @@ -0,0 +1,52 @@ +var person = { + name: "John", //String + lastName: "Doe", + age: 35, //Number + gender: "male", + luckyNumbers: [7, 11, 13, 17], //Array + significantOther: person2 //Object, yes, the same variable/object defined after +}; + +var person2 = { + name: "Jane", + lastName: "Doe", + age: 38, + gender: "female", + luckyNumbers: [2, 4, 6, 8], + significantOther: person +}; + +var person3 = { + name: 'Jimmy', + lastName: 'Doe', + age: 13, + gender: "male", + luckyNumbers: [1, 2, 3, 4], + significantOther: null +} + +var family = { + lastName: "Doe", + members: [person, person2, person3] //Array of objects, don't forget to add Jimmy +}; + + +function addAllFamilyLuckyNumbers(anArray) { + let sumOfAllLuckyNumbers = 0; //sumOfAllLuckyNumbers is a number, the sum of all lucky numbers. + for (let i = 0; i < anArray.length; i++) { + for (let x = 0; x < anArray[i].luckyNumbers.length; x++) { + sumOfAllLuckyNumbers += anArray[i].luckyNumbers[x]; + } + } + //To-Do: loop and add; consider nested loops + //Hint: use the anArray variable to get all of the lucky numbers + + return sumOfAllLuckyNumbers; +} + +//Enter all your code here: +person.luckyNumbers[3] = 33; + + +//Do not make changes below: +console.log(addAllFamilyLuckyNumbers(family.members)); diff --git a/exercises/032-javascriptObjects/tests.js b/exercises/032-javascriptObjects/tests.js new file mode 100644 index 000000000..09952deb4 --- /dev/null +++ b/exercises/032-javascriptObjects/tests.js @@ -0,0 +1,34 @@ +const fs = require('fs'); +const path = require('path'); +const rewire = require('rewire'); + +jest.dontMock('fs'); +//here we are going to store and accumulate (concatenate) all the console log's from the exercise +let _buffer = ""; +let _log = console.log; + +// lets override the console.log function to mock it, +// but we are also going to save what supposed to be the ouput of the console inside _buffer +global.console.log = console.log = jest.fn((text) => _buffer += text + "\n"); + +const file = rewire("./app.js"); +const family = file.__get__("family"); + +describe('All the javascript should match', function () { + beforeEach(() => { + //here I import the HTML into the document + }); + afterEach(() => { jest.resetModules(); }); + + it("John Doe's fourth lucky number should be 33" , function(){ + expect(family.members[0].luckyNumbers[3]).toBe(33) + }) + + it('console.log() function should be called with 94 - sum of all family lucky numbers', function () { + const file = require("./app.js"); + expect(_buffer).toBe("94\n"); + //and I expect the console.log to be already called just one time. + expect(console.log.mock.calls.length).toBe(1); + + }); +}); diff --git a/exercises/032-addFullNameProperty/README.es.md b/exercises/033-addFullNameProperty/README.es.md similarity index 94% rename from exercises/032-addFullNameProperty/README.es.md rename to exercises/033-addFullNameProperty/README.es.md index 334767d60..bf0f0f7b9 100644 --- a/exercises/032-addFullNameProperty/README.es.md +++ b/exercises/033-addFullNameProperty/README.es.md @@ -1,4 +1,4 @@ -# `032` addFullNameProperty +# `033` addFullNameProperty ## 📝 Instrucciones: diff --git a/exercises/032-addFullNameProperty/README.md b/exercises/033-addFullNameProperty/README.md similarity index 94% rename from exercises/032-addFullNameProperty/README.md rename to exercises/033-addFullNameProperty/README.md index 65ccd21e5..abeff4a18 100644 --- a/exercises/032-addFullNameProperty/README.md +++ b/exercises/033-addFullNameProperty/README.md @@ -1,4 +1,4 @@ -# `032` addFullNameProperty +# `033` addFullNameProperty ## 📝 Instructions: diff --git a/exercises/032-addFullNameProperty/app.js b/exercises/033-addFullNameProperty/app.js similarity index 100% rename from exercises/032-addFullNameProperty/app.js rename to exercises/033-addFullNameProperty/app.js diff --git a/exercises/032-addFullNameProperty/solution.hide.js b/exercises/033-addFullNameProperty/solution.hide.js similarity index 100% rename from exercises/032-addFullNameProperty/solution.hide.js rename to exercises/033-addFullNameProperty/solution.hide.js diff --git a/exercises/032-addFullNameProperty/test.js b/exercises/033-addFullNameProperty/test.js similarity index 100% rename from exercises/032-addFullNameProperty/test.js rename to exercises/033-addFullNameProperty/test.js diff --git a/exercises/033-addObjectProperty/README.es.md b/exercises/034-addObjectProperty/README.es.md similarity index 96% rename from exercises/033-addObjectProperty/README.es.md rename to exercises/034-addObjectProperty/README.es.md index ccb6409ab..db157d3f2 100644 --- a/exercises/033-addObjectProperty/README.es.md +++ b/exercises/034-addObjectProperty/README.es.md @@ -1,4 +1,4 @@ -# `033` addObjectProperty +# `034` addObjectProperty ## 📝 Instrucciones: diff --git a/exercises/033-addObjectProperty/README.md b/exercises/034-addObjectProperty/README.md similarity index 96% rename from exercises/033-addObjectProperty/README.md rename to exercises/034-addObjectProperty/README.md index 1da872b29..5aa25fbeb 100644 --- a/exercises/033-addObjectProperty/README.md +++ b/exercises/034-addObjectProperty/README.md @@ -1,4 +1,4 @@ -# `033` addObjectProperty +# `034` addObjectProperty ## 📝 Instructions: diff --git a/exercises/033-addObjectProperty/app.js b/exercises/034-addObjectProperty/app.js similarity index 100% rename from exercises/033-addObjectProperty/app.js rename to exercises/034-addObjectProperty/app.js diff --git a/exercises/033-addObjectProperty/solution.hide.js b/exercises/034-addObjectProperty/solution.hide.js similarity index 100% rename from exercises/033-addObjectProperty/solution.hide.js rename to exercises/034-addObjectProperty/solution.hide.js diff --git a/exercises/033-addObjectProperty/test.js b/exercises/034-addObjectProperty/test.js similarity index 100% rename from exercises/033-addObjectProperty/test.js rename to exercises/034-addObjectProperty/test.js diff --git a/exercises/034-isPersonOldEnoughToDrive/README.es.md b/exercises/035-isPersonOldEnoughToDrive/README.es.md similarity index 93% rename from exercises/034-isPersonOldEnoughToDrive/README.es.md rename to exercises/035-isPersonOldEnoughToDrive/README.es.md index 17639ae5c..07570eb1e 100644 --- a/exercises/034-isPersonOldEnoughToDrive/README.es.md +++ b/exercises/035-isPersonOldEnoughToDrive/README.es.md @@ -1,4 +1,4 @@ -# `034` isPersonOldEnoughToDrive +# `035` isPersonOldEnoughToDrive ## 📝 Instrucciones: diff --git a/exercises/034-isPersonOldEnoughToDrive/README.md b/exercises/035-isPersonOldEnoughToDrive/README.md similarity index 93% rename from exercises/034-isPersonOldEnoughToDrive/README.md rename to exercises/035-isPersonOldEnoughToDrive/README.md index 0e4851d08..78f4401d1 100644 --- a/exercises/034-isPersonOldEnoughToDrive/README.md +++ b/exercises/035-isPersonOldEnoughToDrive/README.md @@ -1,4 +1,4 @@ -# `034` isPersonOldEnoughToDrive +# `035` isPersonOldEnoughToDrive ## 📝 Instructions: diff --git a/exercises/034-isPersonOldEnoughToDrive/app.js b/exercises/035-isPersonOldEnoughToDrive/app.js similarity index 100% rename from exercises/034-isPersonOldEnoughToDrive/app.js rename to exercises/035-isPersonOldEnoughToDrive/app.js diff --git a/exercises/034-isPersonOldEnoughToDrive/solution.hide.js b/exercises/035-isPersonOldEnoughToDrive/solution.hide.js similarity index 100% rename from exercises/034-isPersonOldEnoughToDrive/solution.hide.js rename to exercises/035-isPersonOldEnoughToDrive/solution.hide.js diff --git a/exercises/034-isPersonOldEnoughToDrive/test.js b/exercises/035-isPersonOldEnoughToDrive/test.js similarity index 100% rename from exercises/034-isPersonOldEnoughToDrive/test.js rename to exercises/035-isPersonOldEnoughToDrive/test.js diff --git a/exercises/035-isPersonOldEnoughToVote/README.es.md b/exercises/036-isPersonOldEnoughToVote/README.es.md similarity index 93% rename from exercises/035-isPersonOldEnoughToVote/README.es.md rename to exercises/036-isPersonOldEnoughToVote/README.es.md index 47bf85d07..b929453a6 100644 --- a/exercises/035-isPersonOldEnoughToVote/README.es.md +++ b/exercises/036-isPersonOldEnoughToVote/README.es.md @@ -1,4 +1,4 @@ -# `035` isPersonOldEnoughToVote +# `036` isPersonOldEnoughToVote ## 📝 Instrucciones: diff --git a/exercises/035-isPersonOldEnoughToVote/README.md b/exercises/036-isPersonOldEnoughToVote/README.md similarity index 93% rename from exercises/035-isPersonOldEnoughToVote/README.md rename to exercises/036-isPersonOldEnoughToVote/README.md index eb9e1bffa..ebf5f096b 100644 --- a/exercises/035-isPersonOldEnoughToVote/README.md +++ b/exercises/036-isPersonOldEnoughToVote/README.md @@ -1,4 +1,4 @@ -# `035` isPersonOldEnoughToVote +# `036` isPersonOldEnoughToVote ## 📝 Instructions: diff --git a/exercises/035-isPersonOldEnoughToVote/app.js b/exercises/036-isPersonOldEnoughToVote/app.js similarity index 100% rename from exercises/035-isPersonOldEnoughToVote/app.js rename to exercises/036-isPersonOldEnoughToVote/app.js diff --git a/exercises/035-isPersonOldEnoughToVote/solution.hide.js b/exercises/036-isPersonOldEnoughToVote/solution.hide.js similarity index 100% rename from exercises/035-isPersonOldEnoughToVote/solution.hide.js rename to exercises/036-isPersonOldEnoughToVote/solution.hide.js diff --git a/exercises/035-isPersonOldEnoughToVote/test.js b/exercises/036-isPersonOldEnoughToVote/test.js similarity index 100% rename from exercises/035-isPersonOldEnoughToVote/test.js rename to exercises/036-isPersonOldEnoughToVote/test.js diff --git a/exercises/036-isPersonOldEnoughToDrink/README.es.md b/exercises/037-isPersonOldEnoughToDrink/README.es.md similarity index 93% rename from exercises/036-isPersonOldEnoughToDrink/README.es.md rename to exercises/037-isPersonOldEnoughToDrink/README.es.md index c87eadde9..86707245d 100644 --- a/exercises/036-isPersonOldEnoughToDrink/README.es.md +++ b/exercises/037-isPersonOldEnoughToDrink/README.es.md @@ -1,4 +1,4 @@ -# `036` isPersonOldEnoughToDrink +# `037` isPersonOldEnoughToDrink ## 📝 Instrucciones: diff --git a/exercises/036-isPersonOldEnoughToDrink/README.md b/exercises/037-isPersonOldEnoughToDrink/README.md similarity index 93% rename from exercises/036-isPersonOldEnoughToDrink/README.md rename to exercises/037-isPersonOldEnoughToDrink/README.md index 0d9b70f63..7a28425bb 100644 --- a/exercises/036-isPersonOldEnoughToDrink/README.md +++ b/exercises/037-isPersonOldEnoughToDrink/README.md @@ -1,4 +1,4 @@ -# `036` isPersonOldEnoughToDrink +# `037` isPersonOldEnoughToDrink ## 📝 Instructions: diff --git a/exercises/036-isPersonOldEnoughToDrink/app.js b/exercises/037-isPersonOldEnoughToDrink/app.js similarity index 100% rename from exercises/036-isPersonOldEnoughToDrink/app.js rename to exercises/037-isPersonOldEnoughToDrink/app.js diff --git a/exercises/036-isPersonOldEnoughToDrink/solution.hide.js b/exercises/037-isPersonOldEnoughToDrink/solution.hide.js similarity index 100% rename from exercises/036-isPersonOldEnoughToDrink/solution.hide.js rename to exercises/037-isPersonOldEnoughToDrink/solution.hide.js diff --git a/exercises/036-isPersonOldEnoughToDrink/test.js b/exercises/037-isPersonOldEnoughToDrink/test.js similarity index 100% rename from exercises/036-isPersonOldEnoughToDrink/test.js rename to exercises/037-isPersonOldEnoughToDrink/test.js diff --git a/exercises/037-addArrayProperty/README.es.md b/exercises/038-addArrayProperty/README.es.md similarity index 95% rename from exercises/037-addArrayProperty/README.es.md rename to exercises/038-addArrayProperty/README.es.md index fa5bd7217..ec0f92e0e 100644 --- a/exercises/037-addArrayProperty/README.es.md +++ b/exercises/038-addArrayProperty/README.es.md @@ -1,4 +1,4 @@ -# `037` addArrayProperty +# `038` addArrayProperty ## 📝 Instrucciones: diff --git a/exercises/037-addArrayProperty/README.md b/exercises/038-addArrayProperty/README.md similarity index 94% rename from exercises/037-addArrayProperty/README.md rename to exercises/038-addArrayProperty/README.md index 4b8d65018..8c1ed4245 100644 --- a/exercises/037-addArrayProperty/README.md +++ b/exercises/038-addArrayProperty/README.md @@ -1,4 +1,4 @@ -# `037` addArrayProperty +# `038` addArrayProperty ## 📝 Instructions: diff --git a/exercises/037-addArrayProperty/app.js b/exercises/038-addArrayProperty/app.js similarity index 100% rename from exercises/037-addArrayProperty/app.js rename to exercises/038-addArrayProperty/app.js diff --git a/exercises/037-addArrayProperty/solution.hide.js b/exercises/038-addArrayProperty/solution.hide.js similarity index 100% rename from exercises/037-addArrayProperty/solution.hide.js rename to exercises/038-addArrayProperty/solution.hide.js diff --git a/exercises/037-addArrayProperty/test.js b/exercises/038-addArrayProperty/test.js similarity index 100% rename from exercises/037-addArrayProperty/test.js rename to exercises/038-addArrayProperty/test.js diff --git a/exercises/038-computeAreaOfARectangle/README.es.md b/exercises/039-computeAreaOfARectangle/README.es.md similarity index 89% rename from exercises/038-computeAreaOfARectangle/README.es.md rename to exercises/039-computeAreaOfARectangle/README.es.md index 7819e60a5..b367df123 100644 --- a/exercises/038-computeAreaOfARectangle/README.es.md +++ b/exercises/039-computeAreaOfARectangle/README.es.md @@ -1,4 +1,4 @@ -# `038` computeAreaOfARectangle +# `039` computeAreaOfARectangle ## 📝 Instrucciones: diff --git a/exercises/038-computeAreaOfARectangle/README.md b/exercises/039-computeAreaOfARectangle/README.md similarity index 89% rename from exercises/038-computeAreaOfARectangle/README.md rename to exercises/039-computeAreaOfARectangle/README.md index d66e42c23..69f7c7909 100644 --- a/exercises/038-computeAreaOfARectangle/README.md +++ b/exercises/039-computeAreaOfARectangle/README.md @@ -1,4 +1,4 @@ -# `038` computeAreaOfARectangle +# `039` computeAreaOfARectangle ## 📝 Instructions: diff --git a/exercises/038-computeAreaOfARectangle/app.js b/exercises/039-computeAreaOfARectangle/app.js similarity index 100% rename from exercises/038-computeAreaOfARectangle/app.js rename to exercises/039-computeAreaOfARectangle/app.js diff --git a/exercises/038-computeAreaOfARectangle/solution.hide.js b/exercises/039-computeAreaOfARectangle/solution.hide.js similarity index 100% rename from exercises/038-computeAreaOfARectangle/solution.hide.js rename to exercises/039-computeAreaOfARectangle/solution.hide.js diff --git a/exercises/038-computeAreaOfARectangle/test.js b/exercises/039-computeAreaOfARectangle/test.js similarity index 100% rename from exercises/038-computeAreaOfARectangle/test.js rename to exercises/039-computeAreaOfARectangle/test.js diff --git a/exercises/039-computePerimeterOfARectangle/README.es.md b/exercises/040-computePerimeterOfARectangle/README.es.md similarity index 89% rename from exercises/039-computePerimeterOfARectangle/README.es.md rename to exercises/040-computePerimeterOfARectangle/README.es.md index 2775640e9..7d9dd403b 100644 --- a/exercises/039-computePerimeterOfARectangle/README.es.md +++ b/exercises/040-computePerimeterOfARectangle/README.es.md @@ -1,4 +1,4 @@ -# `039` computePerimeterOfARectangle +# `040` computePerimeterOfARectangle ## 📝 Instrucciones: diff --git a/exercises/039-computePerimeterOfARectangle/README.md b/exercises/040-computePerimeterOfARectangle/README.md similarity index 88% rename from exercises/039-computePerimeterOfARectangle/README.md rename to exercises/040-computePerimeterOfARectangle/README.md index a80e1009f..4224499cf 100644 --- a/exercises/039-computePerimeterOfARectangle/README.md +++ b/exercises/040-computePerimeterOfARectangle/README.md @@ -1,4 +1,4 @@ -# `039` computePerimeterOfARectangle +# `040` computePerimeterOfARectangle ## 📝 Instructions: diff --git a/exercises/039-computePerimeterOfARectangle/app.js b/exercises/040-computePerimeterOfARectangle/app.js similarity index 100% rename from exercises/039-computePerimeterOfARectangle/app.js rename to exercises/040-computePerimeterOfARectangle/app.js diff --git a/exercises/039-computePerimeterOfARectangle/solution.hide.js b/exercises/040-computePerimeterOfARectangle/solution.hide.js similarity index 100% rename from exercises/039-computePerimeterOfARectangle/solution.hide.js rename to exercises/040-computePerimeterOfARectangle/solution.hide.js diff --git a/exercises/039-computePerimeterOfARectangle/test.js b/exercises/040-computePerimeterOfARectangle/test.js similarity index 100% rename from exercises/039-computePerimeterOfARectangle/test.js rename to exercises/040-computePerimeterOfARectangle/test.js diff --git a/exercises/040-computePerimeterOfATriangle/README.es.md b/exercises/041-computePerimeterOfATriangle/README.es.md similarity index 89% rename from exercises/040-computePerimeterOfATriangle/README.es.md rename to exercises/041-computePerimeterOfATriangle/README.es.md index 09035514d..58b3163c1 100644 --- a/exercises/040-computePerimeterOfATriangle/README.es.md +++ b/exercises/041-computePerimeterOfATriangle/README.es.md @@ -1,4 +1,4 @@ -# `040` computePerimeterOfATriangle +# `041` computePerimeterOfATriangle ## 📝 Instrucciones: diff --git a/exercises/040-computePerimeterOfATriangle/README.md b/exercises/041-computePerimeterOfATriangle/README.md similarity index 89% rename from exercises/040-computePerimeterOfATriangle/README.md rename to exercises/041-computePerimeterOfATriangle/README.md index 677d640b6..80ed01a25 100644 --- a/exercises/040-computePerimeterOfATriangle/README.md +++ b/exercises/041-computePerimeterOfATriangle/README.md @@ -1,4 +1,4 @@ -# `040` computePerimeterOfATriangle +# `041` computePerimeterOfATriangle ## 📝 Instructions: diff --git a/exercises/040-computePerimeterOfATriangle/app.js b/exercises/041-computePerimeterOfATriangle/app.js similarity index 100% rename from exercises/040-computePerimeterOfATriangle/app.js rename to exercises/041-computePerimeterOfATriangle/app.js diff --git a/exercises/040-computePerimeterOfATriangle/solution.hide.js b/exercises/041-computePerimeterOfATriangle/solution.hide.js similarity index 100% rename from exercises/040-computePerimeterOfATriangle/solution.hide.js rename to exercises/041-computePerimeterOfATriangle/solution.hide.js diff --git a/exercises/040-computePerimeterOfATriangle/test.js b/exercises/041-computePerimeterOfATriangle/test.js similarity index 100% rename from exercises/040-computePerimeterOfATriangle/test.js rename to exercises/041-computePerimeterOfATriangle/test.js diff --git a/exercises/041-computeTripledAreaOfARectangle/README.es.md b/exercises/042-computeTripledAreaOfARectangle/README.es.md similarity index 89% rename from exercises/041-computeTripledAreaOfARectangle/README.es.md rename to exercises/042-computeTripledAreaOfARectangle/README.es.md index e7ede9f5c..c5f21c1ea 100644 --- a/exercises/041-computeTripledAreaOfARectangle/README.es.md +++ b/exercises/042-computeTripledAreaOfARectangle/README.es.md @@ -1,4 +1,4 @@ -# `041` computeTripledAreaOfARectangle +# `042` computeTripledAreaOfARectangle ## 📝 Instrucciones: diff --git a/exercises/041-computeTripledAreaOfARectangle/README.md b/exercises/042-computeTripledAreaOfARectangle/README.md similarity index 89% rename from exercises/041-computeTripledAreaOfARectangle/README.md rename to exercises/042-computeTripledAreaOfARectangle/README.md index 55ccf8556..38cfab19d 100644 --- a/exercises/041-computeTripledAreaOfARectangle/README.md +++ b/exercises/042-computeTripledAreaOfARectangle/README.md @@ -1,4 +1,4 @@ -# `041` computeTripledAreaOfARectangle +# `042` computeTripledAreaOfARectangle ## 📝 Instructions: diff --git a/exercises/041-computeTripledAreaOfARectangle/app.js b/exercises/042-computeTripledAreaOfARectangle/app.js similarity index 100% rename from exercises/041-computeTripledAreaOfARectangle/app.js rename to exercises/042-computeTripledAreaOfARectangle/app.js diff --git a/exercises/041-computeTripledAreaOfARectangle/solution.hide.js b/exercises/042-computeTripledAreaOfARectangle/solution.hide.js similarity index 100% rename from exercises/041-computeTripledAreaOfARectangle/solution.hide.js rename to exercises/042-computeTripledAreaOfARectangle/solution.hide.js diff --git a/exercises/041-computeTripledAreaOfARectangle/test.js b/exercises/042-computeTripledAreaOfARectangle/test.js similarity index 100% rename from exercises/041-computeTripledAreaOfARectangle/test.js rename to exercises/042-computeTripledAreaOfARectangle/test.js diff --git a/exercises/042-computePerimeterOfACircle/README.es.md b/exercises/043-computePerimeterOfACircle/README.es.md similarity index 93% rename from exercises/042-computePerimeterOfACircle/README.es.md rename to exercises/043-computePerimeterOfACircle/README.es.md index 82a78ef76..d42978eb3 100644 --- a/exercises/042-computePerimeterOfACircle/README.es.md +++ b/exercises/043-computePerimeterOfACircle/README.es.md @@ -1,4 +1,4 @@ -# `042` computePerimeterOfACircle +# `043` computePerimeterOfACircle ## 📝 Instrucciones: diff --git a/exercises/042-computePerimeterOfACircle/README.md b/exercises/043-computePerimeterOfACircle/README.md similarity index 93% rename from exercises/042-computePerimeterOfACircle/README.md rename to exercises/043-computePerimeterOfACircle/README.md index b08a2f7f0..5e2d1d90b 100644 --- a/exercises/042-computePerimeterOfACircle/README.md +++ b/exercises/043-computePerimeterOfACircle/README.md @@ -1,4 +1,4 @@ -# `042` computePerimeterOfACircle +# `043` computePerimeterOfACircle ## 📝 Instructions: diff --git a/exercises/042-computePerimeterOfACircle/app.js b/exercises/043-computePerimeterOfACircle/app.js similarity index 100% rename from exercises/042-computePerimeterOfACircle/app.js rename to exercises/043-computePerimeterOfACircle/app.js diff --git a/exercises/042-computePerimeterOfACircle/solution.hide.js b/exercises/043-computePerimeterOfACircle/solution.hide.js similarity index 100% rename from exercises/042-computePerimeterOfACircle/solution.hide.js rename to exercises/043-computePerimeterOfACircle/solution.hide.js diff --git a/exercises/042-computePerimeterOfACircle/test.js b/exercises/043-computePerimeterOfACircle/test.js similarity index 100% rename from exercises/042-computePerimeterOfACircle/test.js rename to exercises/043-computePerimeterOfACircle/test.js diff --git a/exercises/043-computeAreaOfACircle/README.es.md b/exercises/044-computeAreaOfACircle/README.es.md similarity index 90% rename from exercises/043-computeAreaOfACircle/README.es.md rename to exercises/044-computeAreaOfACircle/README.es.md index 89be4e5e0..04960ce33 100644 --- a/exercises/043-computeAreaOfACircle/README.es.md +++ b/exercises/044-computeAreaOfACircle/README.es.md @@ -1,4 +1,4 @@ -# `043` computeAreaOfACircle +# `044` computeAreaOfACircle ## 📝 Instrucciones: diff --git a/exercises/043-computeAreaOfACircle/README.md b/exercises/044-computeAreaOfACircle/README.md similarity index 90% rename from exercises/043-computeAreaOfACircle/README.md rename to exercises/044-computeAreaOfACircle/README.md index 115edea1c..316904d6d 100644 --- a/exercises/043-computeAreaOfACircle/README.md +++ b/exercises/044-computeAreaOfACircle/README.md @@ -1,4 +1,4 @@ -# `043` computeAreaOfACircle +# `044` computeAreaOfACircle ## 📝 Instructions: diff --git a/exercises/043-computeAreaOfACircle/app.js b/exercises/044-computeAreaOfACircle/app.js similarity index 100% rename from exercises/043-computeAreaOfACircle/app.js rename to exercises/044-computeAreaOfACircle/app.js diff --git a/exercises/043-computeAreaOfACircle/solution.hide.js b/exercises/044-computeAreaOfACircle/solution.hide.js similarity index 100% rename from exercises/043-computeAreaOfACircle/solution.hide.js rename to exercises/044-computeAreaOfACircle/solution.hide.js diff --git a/exercises/043-computeAreaOfACircle/test.js b/exercises/044-computeAreaOfACircle/test.js similarity index 100% rename from exercises/043-computeAreaOfACircle/test.js rename to exercises/044-computeAreaOfACircle/test.js diff --git a/exercises/044-computePower/README.es.md b/exercises/045-computePower/README.es.md similarity index 92% rename from exercises/044-computePower/README.es.md rename to exercises/045-computePower/README.es.md index 281e797c6..c1418077c 100644 --- a/exercises/044-computePower/README.es.md +++ b/exercises/045-computePower/README.es.md @@ -1,4 +1,4 @@ -# `044` computePower +# `045` computePower ## 📝 Instrucciones: diff --git a/exercises/044-computePower/README.md b/exercises/045-computePower/README.md similarity index 92% rename from exercises/044-computePower/README.md rename to exercises/045-computePower/README.md index d4ecc846b..f031a66f9 100644 --- a/exercises/044-computePower/README.md +++ b/exercises/045-computePower/README.md @@ -1,4 +1,4 @@ -# `044` computePower +# `045` computePower ## 📝 Instructions: diff --git a/exercises/044-computePower/app.js b/exercises/045-computePower/app.js similarity index 100% rename from exercises/044-computePower/app.js rename to exercises/045-computePower/app.js diff --git a/exercises/044-computePower/solution.hide.js b/exercises/045-computePower/solution.hide.js similarity index 100% rename from exercises/044-computePower/solution.hide.js rename to exercises/045-computePower/solution.hide.js diff --git a/exercises/044-computePower/test.js b/exercises/045-computePower/test.js similarity index 100% rename from exercises/044-computePower/test.js rename to exercises/045-computePower/test.js diff --git a/exercises/045-computeSquareRoot/README.es.md b/exercises/046-computeSquareRoot/README.es.md similarity index 94% rename from exercises/045-computeSquareRoot/README.es.md rename to exercises/046-computeSquareRoot/README.es.md index 518e550c0..bbc7f7820 100644 --- a/exercises/045-computeSquareRoot/README.es.md +++ b/exercises/046-computeSquareRoot/README.es.md @@ -1,4 +1,4 @@ -# `045` computeSquareRoot +# `046` computeSquareRoot ## 📝 Instrucciones: diff --git a/exercises/045-computeSquareRoot/README.md b/exercises/046-computeSquareRoot/README.md similarity index 94% rename from exercises/045-computeSquareRoot/README.md rename to exercises/046-computeSquareRoot/README.md index 18b5b1d1d..f585e3aff 100644 --- a/exercises/045-computeSquareRoot/README.md +++ b/exercises/046-computeSquareRoot/README.md @@ -1,4 +1,4 @@ -# `045` computeSquareRoot +# `046` computeSquareRoot ## 📝 Instructions: diff --git a/exercises/045-computeSquareRoot/app.js b/exercises/046-computeSquareRoot/app.js similarity index 100% rename from exercises/045-computeSquareRoot/app.js rename to exercises/046-computeSquareRoot/app.js diff --git a/exercises/045-computeSquareRoot/solution.hide.js b/exercises/046-computeSquareRoot/solution.hide.js similarity index 100% rename from exercises/045-computeSquareRoot/solution.hide.js rename to exercises/046-computeSquareRoot/solution.hide.js diff --git a/exercises/045-computeSquareRoot/test.js b/exercises/046-computeSquareRoot/test.js similarity index 100% rename from exercises/045-computeSquareRoot/test.js rename to exercises/046-computeSquareRoot/test.js diff --git a/exercises/046-doubleSquareRootOf/README.es.md b/exercises/047-doubleSquareRootOf/README.es.md similarity index 92% rename from exercises/046-doubleSquareRootOf/README.es.md rename to exercises/047-doubleSquareRootOf/README.es.md index 49e2f54f6..9d0f47352 100644 --- a/exercises/046-doubleSquareRootOf/README.es.md +++ b/exercises/047-doubleSquareRootOf/README.es.md @@ -1,4 +1,4 @@ -# `046` doubleSquareRootOf +# `047` doubleSquareRootOf ## 📝 Instrucciones: diff --git a/exercises/046-doubleSquareRootOf/README.md b/exercises/047-doubleSquareRootOf/README.md similarity index 92% rename from exercises/046-doubleSquareRootOf/README.md rename to exercises/047-doubleSquareRootOf/README.md index daaa11150..6ec8bb625 100644 --- a/exercises/046-doubleSquareRootOf/README.md +++ b/exercises/047-doubleSquareRootOf/README.md @@ -1,4 +1,4 @@ -# `046` doubleSquareRootOf +# `047` doubleSquareRootOf ## 📝 Instructions: diff --git a/exercises/046-doubleSquareRootOf/app.js b/exercises/047-doubleSquareRootOf/app.js similarity index 100% rename from exercises/046-doubleSquareRootOf/app.js rename to exercises/047-doubleSquareRootOf/app.js diff --git a/exercises/046-doubleSquareRootOf/solution.hide.js b/exercises/047-doubleSquareRootOf/solution.hide.js similarity index 100% rename from exercises/046-doubleSquareRootOf/solution.hide.js rename to exercises/047-doubleSquareRootOf/solution.hide.js diff --git a/exercises/046-doubleSquareRootOf/test.js b/exercises/047-doubleSquareRootOf/test.js similarity index 100% rename from exercises/046-doubleSquareRootOf/test.js rename to exercises/047-doubleSquareRootOf/test.js diff --git a/exercises/047-russianRoulette/README.es.md b/exercises/047-russianRoulette/README.es.md new file mode 100644 index 000000000..194d2311d --- /dev/null +++ b/exercises/047-russianRoulette/README.es.md @@ -0,0 +1,19 @@ +# `047` Russian Roulette + +¿Alguna vez has jugado a la Ruleta Rusa? ¡Es muy divertido! Si logras sobrevivir... (muajajajajaja). + +El revólver sólo tiene 6 récamaras para balas. Tú insertas una bala en uno de las recámaras, y giras las recámaras del revólver para hacer el juego aleatorio. Nadie sabe la posición de la bala ¡¡¡FUEGO!!!....... ¿has muerto? + +## 📝 Instrucciones: + +El juego casi está funcionando. + +1. Completa la función `fireGun()` para que el juego funcione. Debes comparar la posición de la bala contra la posición de la recámara. + +## 💡 Pistas: + ++ Si la posición de la bala `firePosition` coincide con la posición de la recámara dada por la función `spinChamber`, la función `fireGun()` debe devolver `You're dead!`. + ++ Si la posición de la bala `firePosition` no coincide con la posición de la recámara dada por la función `spinChamber`, la función `fireGun()` debe devolver `Keep playing!`. + ++ La función `spinChamber` retorna un número entero aleatorio entre 1 y 6. diff --git a/exercises/047-russianRoulette/README.md b/exercises/047-russianRoulette/README.md new file mode 100644 index 000000000..a7c9ca629 --- /dev/null +++ b/exercises/047-russianRoulette/README.md @@ -0,0 +1,19 @@ +# `047` Russian Roulette + +Have you ever played Russian Roulette? It's super fun! If you make it (wuuuahahahaha). + +Revolvers can have 6 chambers for bullets. A single bullet is inserted into one of the chambers. The revolver chambers are spun to make the game random. Nobody knows the position of the bullet. FIRE!!!....... Are you dead? + +## 📝 Instructions: + +The game is almost working. + +1. The `fireGun()` function needs to be completed to make the game work. It should compare the bullet position against the chamber position. + +## 💡 Hints: + ++ If the bullet position `firePosition` matches the chamber position given by the function `spinChamber`, the function `fireGun()` should return `You're dead!`. + ++ If the bullet position `firePosition` doesn't match the chamber position given by the function `spinChamber`, the function `fireGun()` should return `Keep playing!`. + ++ The function `spinChamber` returns a random number between 1 and 6. diff --git a/exercises/047-russianRoulette/app.js b/exercises/047-russianRoulette/app.js new file mode 100644 index 000000000..b775e5ff9 --- /dev/null +++ b/exercises/047-russianRoulette/app.js @@ -0,0 +1,16 @@ +// firePosition will be the position in which the gun will fire. +let firePosition = 1; + +// The output of spinChamber will be a number and it can be passed as a parameter to the fireGun function. +const spinChamber = () => { + let chamberPosition = Math.floor((Math.random() * 6) + 1); + return chamberPosition; +}; + +// Remove the // below and complete the commented lines +const fireGun = (bulletPosition) => { + // if (... === firePosition) return ("You're dead!"); + // else return ("Keep playing!"); +}; + +console.log(fireGun(spinChamber())); diff --git a/exercises/047-russianRoulette/solution.hide.js b/exercises/047-russianRoulette/solution.hide.js new file mode 100644 index 000000000..fe5682db2 --- /dev/null +++ b/exercises/047-russianRoulette/solution.hide.js @@ -0,0 +1,18 @@ +// firePosition will be the position in which the gun will fire. +let firePosition = 1; + +// The output of spinChamber will be a number and it can be passed as a parameter to the fireGun function. +const spinChamber = () => { + let chamberPosition = Math.floor((Math.random() * 6) + 1); + return chamberPosition; +}; + +// Remove the // below and complete the commented lines +const fireGun = (bulletPosition) => { + if (bulletPosition === firePosition) { + return ("You're dead!"); + } + else return ("Keep playing!"); +}; + +console.log(fireGun(spinChamber())); diff --git a/exercises/047-russianRoulette/tests.js b/exercises/047-russianRoulette/tests.js new file mode 100644 index 000000000..59881ac2d --- /dev/null +++ b/exercises/047-russianRoulette/tests.js @@ -0,0 +1,39 @@ +const fs = require('fs'); +const path = require('path'); +const rewire = require('rewire'); + +jest.dontMock('fs'); +let _buffer = ""; +let _log = console.log; +const app_content = fs.readFileSync(path.resolve(__dirname, './app.js'), 'utf8'); +global.console.log = console.log = jest.fn((text) => _buffer += text + "\n"); + + +describe('All the javascript should match', function () { + // jest.resetModules(); + + const app = rewire("./app"); + const fireGun = app.__get__("fireGun"); + const firePosition = app.__get__("firePosition"); + + test('The function "fireGun" should exist', () => { + const file = rewire("./app.js"); + const sum = file.__get__("fireGun"); + expect(sum).not.toBe(undefined); + }) + it('Use "if" conditional;', function () { + const app_content = fs.readFileSync(path.resolve(__dirname, './app.js'), 'utf8'); + expect(app_content).toMatch(/if(\s*)\(/); + }); + + it('If fireGun() is false, message should be "Keep playing!"', function () { + for (let i = 1; i <= 6; i++) { + if (i === firePosition) { + expect(fireGun(i)).toContain("You're dead!"); + } + else { + expect(fireGun(i)).toContain("Keep playing!"); + } + } + }); +}); diff --git a/exercises/047-isEitherEvenOrAreBoth7/README.es.md b/exercises/049-isEitherEvenOrAreBoth7/README.es.md similarity index 93% rename from exercises/047-isEitherEvenOrAreBoth7/README.es.md rename to exercises/049-isEitherEvenOrAreBoth7/README.es.md index a98b68910..03809b66f 100644 --- a/exercises/047-isEitherEvenOrAreBoth7/README.es.md +++ b/exercises/049-isEitherEvenOrAreBoth7/README.es.md @@ -1,4 +1,4 @@ -# `047` isEitherEvenOrAreBoth7 +# `049` isEitherEvenOrAreBoth7 ## 📝 Instrucciones: diff --git a/exercises/047-isEitherEvenOrAreBoth7/README.md b/exercises/049-isEitherEvenOrAreBoth7/README.md similarity index 93% rename from exercises/047-isEitherEvenOrAreBoth7/README.md rename to exercises/049-isEitherEvenOrAreBoth7/README.md index 176e93558..f53ee73ad 100644 --- a/exercises/047-isEitherEvenOrAreBoth7/README.md +++ b/exercises/049-isEitherEvenOrAreBoth7/README.md @@ -1,4 +1,4 @@ -# `047` isEitherEvenOrAreBoth7 +# `049` isEitherEvenOrAreBoth7 ## 📝 Instructions: diff --git a/exercises/047-isEitherEvenOrAreBoth7/app.js b/exercises/049-isEitherEvenOrAreBoth7/app.js similarity index 100% rename from exercises/047-isEitherEvenOrAreBoth7/app.js rename to exercises/049-isEitherEvenOrAreBoth7/app.js diff --git a/exercises/047-isEitherEvenOrAreBoth7/solution.hide.js b/exercises/049-isEitherEvenOrAreBoth7/solution.hide.js similarity index 100% rename from exercises/047-isEitherEvenOrAreBoth7/solution.hide.js rename to exercises/049-isEitherEvenOrAreBoth7/solution.hide.js diff --git a/exercises/047-isEitherEvenOrAreBoth7/test.js b/exercises/049-isEitherEvenOrAreBoth7/test.js similarity index 100% rename from exercises/047-isEitherEvenOrAreBoth7/test.js rename to exercises/049-isEitherEvenOrAreBoth7/test.js diff --git a/exercises/048-isEitherEvenAndLessThan9/README.es.md b/exercises/050-isEitherEvenAndLessThan9/README.es.md similarity index 93% rename from exercises/048-isEitherEvenAndLessThan9/README.es.md rename to exercises/050-isEitherEvenAndLessThan9/README.es.md index 0291f23d5..faed2c5b7 100644 --- a/exercises/048-isEitherEvenAndLessThan9/README.es.md +++ b/exercises/050-isEitherEvenAndLessThan9/README.es.md @@ -1,4 +1,4 @@ -# `048` isEitherEvenAndLessThan9 +# `050` isEitherEvenAndLessThan9 ## 📝 Instrucciones: diff --git a/exercises/048-isEitherEvenAndLessThan9/README.md b/exercises/050-isEitherEvenAndLessThan9/README.md similarity index 93% rename from exercises/048-isEitherEvenAndLessThan9/README.md rename to exercises/050-isEitherEvenAndLessThan9/README.md index a8f958cfb..04d025b0f 100644 --- a/exercises/048-isEitherEvenAndLessThan9/README.md +++ b/exercises/050-isEitherEvenAndLessThan9/README.md @@ -1,4 +1,4 @@ -# `048` isEitherEvenAndLessThan9 +# `050` isEitherEvenAndLessThan9 ## 📝 Instructions: diff --git a/exercises/048-isEitherEvenAndLessThan9/app.js b/exercises/050-isEitherEvenAndLessThan9/app.js similarity index 100% rename from exercises/048-isEitherEvenAndLessThan9/app.js rename to exercises/050-isEitherEvenAndLessThan9/app.js diff --git a/exercises/048-isEitherEvenAndLessThan9/solution.hide.js b/exercises/050-isEitherEvenAndLessThan9/solution.hide.js similarity index 100% rename from exercises/048-isEitherEvenAndLessThan9/solution.hide.js rename to exercises/050-isEitherEvenAndLessThan9/solution.hide.js diff --git a/exercises/048-isEitherEvenAndLessThan9/test.js b/exercises/050-isEitherEvenAndLessThan9/test.js similarity index 100% rename from exercises/048-isEitherEvenAndLessThan9/test.js rename to exercises/050-isEitherEvenAndLessThan9/test.js diff --git a/exercises/049-computeAverageOfNumbers/README.es.md b/exercises/051-computeAverageOfNumbers/README.es.md similarity index 92% rename from exercises/049-computeAverageOfNumbers/README.es.md rename to exercises/051-computeAverageOfNumbers/README.es.md index 18728721c..48420a930 100644 --- a/exercises/049-computeAverageOfNumbers/README.es.md +++ b/exercises/051-computeAverageOfNumbers/README.es.md @@ -1,4 +1,4 @@ -# `049` computeAverageOfNumbers +# `051` computeAverageOfNumbers ## 📝 Instrucciones: diff --git a/exercises/049-computeAverageOfNumbers/README.md b/exercises/051-computeAverageOfNumbers/README.md similarity index 91% rename from exercises/049-computeAverageOfNumbers/README.md rename to exercises/051-computeAverageOfNumbers/README.md index 9f0401202..758b39093 100644 --- a/exercises/049-computeAverageOfNumbers/README.md +++ b/exercises/051-computeAverageOfNumbers/README.md @@ -1,4 +1,4 @@ -# `049` computeAverageOfNumbers +# `051` computeAverageOfNumbers ## 📝 Instructions: diff --git a/exercises/049-computeAverageOfNumbers/app.js b/exercises/051-computeAverageOfNumbers/app.js similarity index 100% rename from exercises/049-computeAverageOfNumbers/app.js rename to exercises/051-computeAverageOfNumbers/app.js diff --git a/exercises/049-computeAverageOfNumbers/solution.hide.js b/exercises/051-computeAverageOfNumbers/solution.hide.js similarity index 100% rename from exercises/049-computeAverageOfNumbers/solution.hide.js rename to exercises/051-computeAverageOfNumbers/solution.hide.js diff --git a/exercises/049-computeAverageOfNumbers/test.js b/exercises/051-computeAverageOfNumbers/test.js similarity index 100% rename from exercises/049-computeAverageOfNumbers/test.js rename to exercises/051-computeAverageOfNumbers/test.js diff --git a/exercises/050-getNthElement/README.es.md b/exercises/052-getNthElement/README.es.md similarity index 93% rename from exercises/050-getNthElement/README.es.md rename to exercises/052-getNthElement/README.es.md index 92f8f8fb8..6053000de 100644 --- a/exercises/050-getNthElement/README.es.md +++ b/exercises/052-getNthElement/README.es.md @@ -1,4 +1,4 @@ -# `050` getNthElement +# `052` getNthElement ## 📝 Instrucciones: diff --git a/exercises/050-getNthElement/README.md b/exercises/052-getNthElement/README.md similarity index 92% rename from exercises/050-getNthElement/README.md rename to exercises/052-getNthElement/README.md index e22f619ff..054f7cf82 100644 --- a/exercises/050-getNthElement/README.md +++ b/exercises/052-getNthElement/README.md @@ -1,4 +1,4 @@ -# `050` getNthElement +# `052` getNthElement ## 📝 Instructions: diff --git a/exercises/050-getNthElement/app.js b/exercises/052-getNthElement/app.js similarity index 100% rename from exercises/050-getNthElement/app.js rename to exercises/052-getNthElement/app.js diff --git a/exercises/050-getNthElement/solution.hide.js b/exercises/052-getNthElement/solution.hide.js similarity index 100% rename from exercises/050-getNthElement/solution.hide.js rename to exercises/052-getNthElement/solution.hide.js diff --git a/exercises/050-getNthElement/test.js b/exercises/052-getNthElement/test.js similarity index 100% rename from exercises/050-getNthElement/test.js rename to exercises/052-getNthElement/test.js diff --git a/exercises/051-getFirstElement/README.es.md b/exercises/053-getFirstElement/README.es.md similarity index 91% rename from exercises/051-getFirstElement/README.es.md rename to exercises/053-getFirstElement/README.es.md index 67ec2bc23..22ecaa0b7 100644 --- a/exercises/051-getFirstElement/README.es.md +++ b/exercises/053-getFirstElement/README.es.md @@ -1,4 +1,4 @@ -# `051` getFirstElement +# `053` getFirstElement ## 📝 Instrucciones: diff --git a/exercises/051-getFirstElement/README.md b/exercises/053-getFirstElement/README.md similarity index 91% rename from exercises/051-getFirstElement/README.md rename to exercises/053-getFirstElement/README.md index ae500d6d9..683c104bf 100644 --- a/exercises/051-getFirstElement/README.md +++ b/exercises/053-getFirstElement/README.md @@ -1,4 +1,4 @@ -# `051` getFirstElement +# `053` getFirstElement ## 📝 Instructions: diff --git a/exercises/051-getFirstElement/app.js b/exercises/053-getFirstElement/app.js similarity index 100% rename from exercises/051-getFirstElement/app.js rename to exercises/053-getFirstElement/app.js diff --git a/exercises/051-getFirstElement/solution.hide.js b/exercises/053-getFirstElement/solution.hide.js similarity index 100% rename from exercises/051-getFirstElement/solution.hide.js rename to exercises/053-getFirstElement/solution.hide.js diff --git a/exercises/051-getFirstElement/test.js b/exercises/053-getFirstElement/test.js similarity index 100% rename from exercises/051-getFirstElement/test.js rename to exercises/053-getFirstElement/test.js diff --git a/exercises/052-getLastElement/README.es.md b/exercises/054-getLastElement/README.es.md similarity index 93% rename from exercises/052-getLastElement/README.es.md rename to exercises/054-getLastElement/README.es.md index b49a9a00b..8e21375ac 100644 --- a/exercises/052-getLastElement/README.es.md +++ b/exercises/054-getLastElement/README.es.md @@ -1,4 +1,4 @@ -# `052` getLastElement +# `054` getLastElement ## 📝 Instrucciones: diff --git a/exercises/052-getLastElement/README.md b/exercises/054-getLastElement/README.md similarity index 93% rename from exercises/052-getLastElement/README.md rename to exercises/054-getLastElement/README.md index 9c4d8afe0..4ba005617 100644 --- a/exercises/052-getLastElement/README.md +++ b/exercises/054-getLastElement/README.md @@ -1,4 +1,4 @@ -# `052` getLastElement +# `054` getLastElement ## 📝 Instructions: diff --git a/exercises/052-getLastElement/app.js b/exercises/054-getLastElement/app.js similarity index 100% rename from exercises/052-getLastElement/app.js rename to exercises/054-getLastElement/app.js diff --git a/exercises/052-getLastElement/solution.hide.js b/exercises/054-getLastElement/solution.hide.js similarity index 100% rename from exercises/052-getLastElement/solution.hide.js rename to exercises/054-getLastElement/solution.hide.js diff --git a/exercises/052-getLastElement/test.js b/exercises/054-getLastElement/test.js similarity index 100% rename from exercises/052-getLastElement/test.js rename to exercises/054-getLastElement/test.js diff --git a/exercises/053-addToFront/README.es.md b/exercises/055-addToFront/README.es.md similarity index 95% rename from exercises/053-addToFront/README.es.md rename to exercises/055-addToFront/README.es.md index 0fa77f558..232a3f20f 100644 --- a/exercises/053-addToFront/README.es.md +++ b/exercises/055-addToFront/README.es.md @@ -1,4 +1,4 @@ -# `053` addToFront +# `055` addToFront ## 📝 Instrucciones: diff --git a/exercises/053-addToFront/README.md b/exercises/055-addToFront/README.md similarity index 95% rename from exercises/053-addToFront/README.md rename to exercises/055-addToFront/README.md index f799476a0..6e7b2b01d 100644 --- a/exercises/053-addToFront/README.md +++ b/exercises/055-addToFront/README.md @@ -1,4 +1,4 @@ -# `053` addToFront +# `055` addToFront ## 📝 Instructions: diff --git a/exercises/053-addToFront/app.js b/exercises/055-addToFront/app.js similarity index 100% rename from exercises/053-addToFront/app.js rename to exercises/055-addToFront/app.js diff --git a/exercises/053-addToFront/solution.hide.js b/exercises/055-addToFront/solution.hide.js similarity index 100% rename from exercises/053-addToFront/solution.hide.js rename to exercises/055-addToFront/solution.hide.js diff --git a/exercises/053-addToFront/test.js b/exercises/055-addToFront/test.js similarity index 100% rename from exercises/053-addToFront/test.js rename to exercises/055-addToFront/test.js diff --git a/exercises/054-addToBack/README.es.md b/exercises/056-addToBack/README.es.md similarity index 95% rename from exercises/054-addToBack/README.es.md rename to exercises/056-addToBack/README.es.md index ba22bc8ea..1ed16e7d6 100644 --- a/exercises/054-addToBack/README.es.md +++ b/exercises/056-addToBack/README.es.md @@ -1,4 +1,4 @@ -# `054` addToBack +# `056` addToBack ## 📝 Instrucciones: diff --git a/exercises/054-addToBack/README.md b/exercises/056-addToBack/README.md similarity index 95% rename from exercises/054-addToBack/README.md rename to exercises/056-addToBack/README.md index 78de002ec..1454c89d7 100644 --- a/exercises/054-addToBack/README.md +++ b/exercises/056-addToBack/README.md @@ -1,4 +1,4 @@ -# `054` addToBack +# `056` addToBack ## 📝 Instructions: diff --git a/exercises/054-addToBack/app.js b/exercises/056-addToBack/app.js similarity index 100% rename from exercises/054-addToBack/app.js rename to exercises/056-addToBack/app.js diff --git a/exercises/054-addToBack/solution.hide.js b/exercises/056-addToBack/solution.hide.js similarity index 100% rename from exercises/054-addToBack/solution.hide.js rename to exercises/056-addToBack/solution.hide.js diff --git a/exercises/054-addToBack/test.js b/exercises/056-addToBack/test.js similarity index 100% rename from exercises/054-addToBack/test.js rename to exercises/056-addToBack/test.js diff --git a/exercises/055-joinArrays/README.es.md b/exercises/057-joinArrays/README.es.md similarity index 95% rename from exercises/055-joinArrays/README.es.md rename to exercises/057-joinArrays/README.es.md index b6d81312a..9711915f4 100644 --- a/exercises/055-joinArrays/README.es.md +++ b/exercises/057-joinArrays/README.es.md @@ -1,4 +1,4 @@ -# `055` joinArrays +# `057` joinArrays ## 📝 Instrucciones: diff --git a/exercises/055-joinArrays/README.md b/exercises/057-joinArrays/README.md similarity index 94% rename from exercises/055-joinArrays/README.md rename to exercises/057-joinArrays/README.md index 46c6790ce..56513e579 100644 --- a/exercises/055-joinArrays/README.md +++ b/exercises/057-joinArrays/README.md @@ -1,4 +1,4 @@ -# `055` joinArrays +# `057` joinArrays ## 📝 Instructions: diff --git a/exercises/055-joinArrays/app.js b/exercises/057-joinArrays/app.js similarity index 100% rename from exercises/055-joinArrays/app.js rename to exercises/057-joinArrays/app.js diff --git a/exercises/055-joinArrays/solution.hide.js b/exercises/057-joinArrays/solution.hide.js similarity index 100% rename from exercises/055-joinArrays/solution.hide.js rename to exercises/057-joinArrays/solution.hide.js diff --git a/exercises/055-joinArrays/test.js b/exercises/057-joinArrays/test.js similarity index 100% rename from exercises/055-joinArrays/test.js rename to exercises/057-joinArrays/test.js diff --git a/exercises/056-getElementsAfter/README.es.md b/exercises/058-getElementsAfter/README.es.md similarity index 94% rename from exercises/056-getElementsAfter/README.es.md rename to exercises/058-getElementsAfter/README.es.md index 5c268d14b..7e9c3a870 100644 --- a/exercises/056-getElementsAfter/README.es.md +++ b/exercises/058-getElementsAfter/README.es.md @@ -1,4 +1,4 @@ -# `056` getElementsAfter +# `058` getElementsAfter ## 📝 Instrucciones: diff --git a/exercises/056-getElementsAfter/README.md b/exercises/058-getElementsAfter/README.md similarity index 94% rename from exercises/056-getElementsAfter/README.md rename to exercises/058-getElementsAfter/README.md index 3cf9fe549..a02506149 100644 --- a/exercises/056-getElementsAfter/README.md +++ b/exercises/058-getElementsAfter/README.md @@ -1,4 +1,4 @@ -# `056` getElementsAfter +# `058` getElementsAfter ## 📝 Instructions: diff --git a/exercises/056-getElementsAfter/app.js b/exercises/058-getElementsAfter/app.js similarity index 100% rename from exercises/056-getElementsAfter/app.js rename to exercises/058-getElementsAfter/app.js diff --git a/exercises/056-getElementsAfter/solution.hide.js b/exercises/058-getElementsAfter/solution.hide.js similarity index 100% rename from exercises/056-getElementsAfter/solution.hide.js rename to exercises/058-getElementsAfter/solution.hide.js diff --git a/exercises/056-getElementsAfter/test.js b/exercises/058-getElementsAfter/test.js similarity index 100% rename from exercises/056-getElementsAfter/test.js rename to exercises/058-getElementsAfter/test.js diff --git a/exercises/057-getElementsUpTo/README.es.md b/exercises/059-getElementsUpTo/README.es.md similarity index 95% rename from exercises/057-getElementsUpTo/README.es.md rename to exercises/059-getElementsUpTo/README.es.md index 4106b8fda..ed635733d 100644 --- a/exercises/057-getElementsUpTo/README.es.md +++ b/exercises/059-getElementsUpTo/README.es.md @@ -1,4 +1,4 @@ -# `057` getElementsUpTo +# `059` getElementsUpTo ## 📝 Instrucciones: diff --git a/exercises/057-getElementsUpTo/README.md b/exercises/059-getElementsUpTo/README.md similarity index 94% rename from exercises/057-getElementsUpTo/README.md rename to exercises/059-getElementsUpTo/README.md index acd776f1e..d70402275 100644 --- a/exercises/057-getElementsUpTo/README.md +++ b/exercises/059-getElementsUpTo/README.md @@ -1,4 +1,4 @@ -# `057` getElementsUpTo +# `059` getElementsUpTo ## 📝 Instructions: diff --git a/exercises/057-getElementsUpTo/app.js b/exercises/059-getElementsUpTo/app.js similarity index 100% rename from exercises/057-getElementsUpTo/app.js rename to exercises/059-getElementsUpTo/app.js diff --git a/exercises/057-getElementsUpTo/solution.hide.js b/exercises/059-getElementsUpTo/solution.hide.js similarity index 100% rename from exercises/057-getElementsUpTo/solution.hide.js rename to exercises/059-getElementsUpTo/solution.hide.js diff --git a/exercises/057-getElementsUpTo/test.js b/exercises/059-getElementsUpTo/test.js similarity index 100% rename from exercises/057-getElementsUpTo/test.js rename to exercises/059-getElementsUpTo/test.js diff --git a/exercises/058-removeFromFront/README.es.md b/exercises/060-removeFromFront/README.es.md similarity index 94% rename from exercises/058-removeFromFront/README.es.md rename to exercises/060-removeFromFront/README.es.md index 38ca39a59..2dbe4d138 100644 --- a/exercises/058-removeFromFront/README.es.md +++ b/exercises/060-removeFromFront/README.es.md @@ -1,4 +1,4 @@ -# `058` removeFromFront +# `060` removeFromFront ## 📝 Instrucciones: diff --git a/exercises/058-removeFromFront/README.md b/exercises/060-removeFromFront/README.md similarity index 94% rename from exercises/058-removeFromFront/README.md rename to exercises/060-removeFromFront/README.md index 1800e31f0..06d72f392 100644 --- a/exercises/058-removeFromFront/README.md +++ b/exercises/060-removeFromFront/README.md @@ -1,4 +1,4 @@ -# `058` removeFromFront +# `060` removeFromFront ## 📝 Instructions: diff --git a/exercises/058-removeFromFront/app.js b/exercises/060-removeFromFront/app.js similarity index 100% rename from exercises/058-removeFromFront/app.js rename to exercises/060-removeFromFront/app.js diff --git a/exercises/058-removeFromFront/solution.hide.js b/exercises/060-removeFromFront/solution.hide.js similarity index 100% rename from exercises/058-removeFromFront/solution.hide.js rename to exercises/060-removeFromFront/solution.hide.js diff --git a/exercises/058-removeFromFront/test.js b/exercises/060-removeFromFront/test.js similarity index 100% rename from exercises/058-removeFromFront/test.js rename to exercises/060-removeFromFront/test.js diff --git a/exercises/059-removeFromBack/README.es.md b/exercises/061-removeFromBack/README.es.md similarity index 93% rename from exercises/059-removeFromBack/README.es.md rename to exercises/061-removeFromBack/README.es.md index 19dd788ae..e6811be16 100644 --- a/exercises/059-removeFromBack/README.es.md +++ b/exercises/061-removeFromBack/README.es.md @@ -1,4 +1,4 @@ -# `059` removeFromBack +# `061` removeFromBack ## 📝 Instrucciones: diff --git a/exercises/059-removeFromBack/README.md b/exercises/061-removeFromBack/README.md similarity index 93% rename from exercises/059-removeFromBack/README.md rename to exercises/061-removeFromBack/README.md index 4da232fc5..0513a3d07 100644 --- a/exercises/059-removeFromBack/README.md +++ b/exercises/061-removeFromBack/README.md @@ -1,4 +1,4 @@ -# `059` removeFromBack +# `061` removeFromBack ## 📝 Instructions: diff --git a/exercises/059-removeFromBack/app.js b/exercises/061-removeFromBack/app.js similarity index 100% rename from exercises/059-removeFromBack/app.js rename to exercises/061-removeFromBack/app.js diff --git a/exercises/059-removeFromBack/solution.hide.js b/exercises/061-removeFromBack/solution.hide.js similarity index 100% rename from exercises/059-removeFromBack/solution.hide.js rename to exercises/061-removeFromBack/solution.hide.js diff --git a/exercises/059-removeFromBack/test.js b/exercises/061-removeFromBack/test.js similarity index 100% rename from exercises/059-removeFromBack/test.js rename to exercises/061-removeFromBack/test.js diff --git a/exercises/060-removeFromFrontOfNew/README.es.md b/exercises/062-removeFromFrontOfNew/README.es.md similarity index 94% rename from exercises/060-removeFromFrontOfNew/README.es.md rename to exercises/062-removeFromFrontOfNew/README.es.md index 2ff2dcf62..bb7714e95 100644 --- a/exercises/060-removeFromFrontOfNew/README.es.md +++ b/exercises/062-removeFromFrontOfNew/README.es.md @@ -1,4 +1,4 @@ -# `060` removeFromFrontOfNew +# `062` removeFromFrontOfNew ## 📝 Instrucciones: diff --git a/exercises/060-removeFromFrontOfNew/README.md b/exercises/062-removeFromFrontOfNew/README.md similarity index 94% rename from exercises/060-removeFromFrontOfNew/README.md rename to exercises/062-removeFromFrontOfNew/README.md index 3f251646b..7fa2df42e 100644 --- a/exercises/060-removeFromFrontOfNew/README.md +++ b/exercises/062-removeFromFrontOfNew/README.md @@ -1,4 +1,4 @@ -# `060` removeFromFrontOfNew +# `062` removeFromFrontOfNew ## 📝 Instructions: diff --git a/exercises/060-removeFromFrontOfNew/app.js b/exercises/062-removeFromFrontOfNew/app.js similarity index 100% rename from exercises/060-removeFromFrontOfNew/app.js rename to exercises/062-removeFromFrontOfNew/app.js diff --git a/exercises/060-removeFromFrontOfNew/solution.hide.js b/exercises/062-removeFromFrontOfNew/solution.hide.js similarity index 100% rename from exercises/060-removeFromFrontOfNew/solution.hide.js rename to exercises/062-removeFromFrontOfNew/solution.hide.js diff --git a/exercises/060-removeFromFrontOfNew/test.js b/exercises/062-removeFromFrontOfNew/test.js similarity index 100% rename from exercises/060-removeFromFrontOfNew/test.js rename to exercises/062-removeFromFrontOfNew/test.js diff --git a/exercises/061-removeFromBackOfNew/README.es.md b/exercises/063-removeFromBackOfNew/README.es.md similarity index 94% rename from exercises/061-removeFromBackOfNew/README.es.md rename to exercises/063-removeFromBackOfNew/README.es.md index bf60728da..ca32b5d34 100644 --- a/exercises/061-removeFromBackOfNew/README.es.md +++ b/exercises/063-removeFromBackOfNew/README.es.md @@ -1,4 +1,4 @@ -# `061` removeFromBackOfNew +# `063` removeFromBackOfNew ## 📝 Instrucciones: diff --git a/exercises/061-removeFromBackOfNew/README.md b/exercises/063-removeFromBackOfNew/README.md similarity index 94% rename from exercises/061-removeFromBackOfNew/README.md rename to exercises/063-removeFromBackOfNew/README.md index 1ebc66f13..0a7137ccb 100644 --- a/exercises/061-removeFromBackOfNew/README.md +++ b/exercises/063-removeFromBackOfNew/README.md @@ -1,4 +1,4 @@ -# `061` removeFromBackOfNew +# `063` removeFromBackOfNew ## 📝 Instructions: diff --git a/exercises/061-removeFromBackOfNew/app.js b/exercises/063-removeFromBackOfNew/app.js similarity index 100% rename from exercises/061-removeFromBackOfNew/app.js rename to exercises/063-removeFromBackOfNew/app.js diff --git a/exercises/061-removeFromBackOfNew/solution.hide.js b/exercises/063-removeFromBackOfNew/solution.hide.js similarity index 100% rename from exercises/061-removeFromBackOfNew/solution.hide.js rename to exercises/063-removeFromBackOfNew/solution.hide.js diff --git a/exercises/061-removeFromBackOfNew/test.js b/exercises/063-removeFromBackOfNew/test.js similarity index 100% rename from exercises/061-removeFromBackOfNew/test.js rename to exercises/063-removeFromBackOfNew/test.js diff --git a/exercises/062-countCharacter/README.es.md b/exercises/064-countCharacter/README.es.md similarity index 95% rename from exercises/062-countCharacter/README.es.md rename to exercises/064-countCharacter/README.es.md index 96fbcac2b..6fe31c48c 100644 --- a/exercises/062-countCharacter/README.es.md +++ b/exercises/064-countCharacter/README.es.md @@ -1,4 +1,4 @@ -# `062` countCharacter +# `064` countCharacter ## 📝 Instrucciones: diff --git a/exercises/062-countCharacter/README.md b/exercises/064-countCharacter/README.md similarity index 95% rename from exercises/062-countCharacter/README.md rename to exercises/064-countCharacter/README.md index 85f45669d..85405b11a 100644 --- a/exercises/062-countCharacter/README.md +++ b/exercises/064-countCharacter/README.md @@ -1,4 +1,4 @@ -# `062` countCharacter +# `064` countCharacter ## 📝 Instructions: diff --git a/exercises/062-countCharacter/app.js b/exercises/064-countCharacter/app.js similarity index 100% rename from exercises/062-countCharacter/app.js rename to exercises/064-countCharacter/app.js diff --git a/exercises/062-countCharacter/solution.hide.js b/exercises/064-countCharacter/solution.hide.js similarity index 100% rename from exercises/062-countCharacter/solution.hide.js rename to exercises/064-countCharacter/solution.hide.js diff --git a/exercises/062-countCharacter/test.js b/exercises/064-countCharacter/test.js similarity index 100% rename from exercises/062-countCharacter/test.js rename to exercises/064-countCharacter/test.js diff --git a/exercises/063-getAllLetters/README.es.md b/exercises/065-getAllLetters/README.es.md similarity index 94% rename from exercises/063-getAllLetters/README.es.md rename to exercises/065-getAllLetters/README.es.md index 9c8388d91..1e60eb3ea 100644 --- a/exercises/063-getAllLetters/README.es.md +++ b/exercises/065-getAllLetters/README.es.md @@ -1,4 +1,4 @@ -# `063` getAllLetters +# `065` getAllLetters ## 📝 Instrucciones: diff --git a/exercises/063-getAllLetters/README.md b/exercises/065-getAllLetters/README.md similarity index 94% rename from exercises/063-getAllLetters/README.md rename to exercises/065-getAllLetters/README.md index f6f73d8b3..f7670830b 100644 --- a/exercises/063-getAllLetters/README.md +++ b/exercises/065-getAllLetters/README.md @@ -1,4 +1,4 @@ -# `063` getAllLetters +# `065` getAllLetters ## 📝 Instructions: diff --git a/exercises/063-getAllLetters/app.js b/exercises/065-getAllLetters/app.js similarity index 100% rename from exercises/063-getAllLetters/app.js rename to exercises/065-getAllLetters/app.js diff --git a/exercises/063-getAllLetters/solution.hide.js b/exercises/065-getAllLetters/solution.hide.js similarity index 100% rename from exercises/063-getAllLetters/solution.hide.js rename to exercises/065-getAllLetters/solution.hide.js diff --git a/exercises/063-getAllLetters/test.js b/exercises/065-getAllLetters/test.js similarity index 100% rename from exercises/063-getAllLetters/test.js rename to exercises/065-getAllLetters/test.js diff --git a/exercises/064-getAllWords/README.es.md b/exercises/066-getAllWords/README.es.md similarity index 94% rename from exercises/064-getAllWords/README.es.md rename to exercises/066-getAllWords/README.es.md index e09acac72..d4122bbea 100644 --- a/exercises/064-getAllWords/README.es.md +++ b/exercises/066-getAllWords/README.es.md @@ -1,4 +1,4 @@ -# `064` getAllWords +# `066` getAllWords ## 📝 Instrucciones: diff --git a/exercises/064-getAllWords/README.md b/exercises/066-getAllWords/README.md similarity index 94% rename from exercises/064-getAllWords/README.md rename to exercises/066-getAllWords/README.md index 595e7e2d9..42f4d3d80 100644 --- a/exercises/064-getAllWords/README.md +++ b/exercises/066-getAllWords/README.md @@ -1,4 +1,4 @@ -# `064` getAllWords +# `066` getAllWords ## 📝 Instructions: diff --git a/exercises/064-getAllWords/app.js b/exercises/066-getAllWords/app.js similarity index 100% rename from exercises/064-getAllWords/app.js rename to exercises/066-getAllWords/app.js diff --git a/exercises/064-getAllWords/solution.hide.js b/exercises/066-getAllWords/solution.hide.js similarity index 100% rename from exercises/064-getAllWords/solution.hide.js rename to exercises/066-getAllWords/solution.hide.js diff --git a/exercises/064-getAllWords/test.js b/exercises/066-getAllWords/test.js similarity index 100% rename from exercises/064-getAllWords/test.js rename to exercises/066-getAllWords/test.js diff --git a/exercises/065-or/README.es.md b/exercises/067-or/README.es.md similarity index 97% rename from exercises/065-or/README.es.md rename to exercises/067-or/README.es.md index 11aac312f..11e508322 100644 --- a/exercises/065-or/README.es.md +++ b/exercises/067-or/README.es.md @@ -1,4 +1,4 @@ -# `065` or +# `067` or En este ejercicio vamos a replicar el comportamiento del operador lógico OR `||` sin usar el propio operador. ¿Recuerdas cómo funciona? diff --git a/exercises/065-or/README.md b/exercises/067-or/README.md similarity index 97% rename from exercises/065-or/README.md rename to exercises/067-or/README.md index b65b76c81..3d7645f07 100644 --- a/exercises/065-or/README.md +++ b/exercises/067-or/README.md @@ -1,4 +1,4 @@ -# `065` or +# `067` or In this exercise, we are going to replicate the behavior of the logical operator OR `||` without actually using the operator itself. Do you remember how it works? diff --git a/exercises/065-or/app.js b/exercises/067-or/app.js similarity index 100% rename from exercises/065-or/app.js rename to exercises/067-or/app.js diff --git a/exercises/065-or/solution.hide.js b/exercises/067-or/solution.hide.js similarity index 100% rename from exercises/065-or/solution.hide.js rename to exercises/067-or/solution.hide.js diff --git a/exercises/065-or/test.js b/exercises/067-or/test.js similarity index 100% rename from exercises/065-or/test.js rename to exercises/067-or/test.js diff --git a/exercises/066-extend/README.es.md b/exercises/068-extend/README.es.md similarity index 97% rename from exercises/066-extend/README.es.md rename to exercises/068-extend/README.es.md index 27b7b18d1..a8070fdb9 100644 --- a/exercises/066-extend/README.es.md +++ b/exercises/068-extend/README.es.md @@ -1,4 +1,4 @@ -# `066` extend +# `068` extend ## 📝 Instrucciones: diff --git a/exercises/066-extend/README.md b/exercises/068-extend/README.md similarity index 97% rename from exercises/066-extend/README.md rename to exercises/068-extend/README.md index 04ee8a07c..115101d49 100644 --- a/exercises/066-extend/README.md +++ b/exercises/068-extend/README.md @@ -1,4 +1,4 @@ -# `066` Extend +# `068` Extend ## 📝 Instructions: diff --git a/exercises/066-extend/app.js b/exercises/068-extend/app.js similarity index 100% rename from exercises/066-extend/app.js rename to exercises/068-extend/app.js diff --git a/exercises/066-extend/solution.hide.js b/exercises/068-extend/solution.hide.js similarity index 100% rename from exercises/066-extend/solution.hide.js rename to exercises/068-extend/solution.hide.js diff --git a/exercises/066-extend/test.js b/exercises/068-extend/test.js similarity index 100% rename from exercises/066-extend/test.js rename to exercises/068-extend/test.js diff --git a/exercises/067-removeNumbersLargerThan/README.es.md b/exercises/069-removeNumbersLargerThan/README.es.md similarity index 93% rename from exercises/067-removeNumbersLargerThan/README.es.md rename to exercises/069-removeNumbersLargerThan/README.es.md index 45c618a41..9a416add4 100644 --- a/exercises/067-removeNumbersLargerThan/README.es.md +++ b/exercises/069-removeNumbersLargerThan/README.es.md @@ -1,4 +1,4 @@ -# `067` removeNumbersLargerThan +# `069` removeNumbersLargerThan ## 📝 Instrucciones: diff --git a/exercises/067-removeNumbersLargerThan/README.md b/exercises/069-removeNumbersLargerThan/README.md similarity index 93% rename from exercises/067-removeNumbersLargerThan/README.md rename to exercises/069-removeNumbersLargerThan/README.md index 1889eedd3..c8d704f58 100644 --- a/exercises/067-removeNumbersLargerThan/README.md +++ b/exercises/069-removeNumbersLargerThan/README.md @@ -1,4 +1,4 @@ -# `067` removeNumbersLargerThan +# `069` removeNumbersLargerThan ## 📝 Instructions: diff --git a/exercises/067-removeNumbersLargerThan/app.js b/exercises/069-removeNumbersLargerThan/app.js similarity index 100% rename from exercises/067-removeNumbersLargerThan/app.js rename to exercises/069-removeNumbersLargerThan/app.js diff --git a/exercises/067-removeNumbersLargerThan/solution.hide.js b/exercises/069-removeNumbersLargerThan/solution.hide.js similarity index 100% rename from exercises/067-removeNumbersLargerThan/solution.hide.js rename to exercises/069-removeNumbersLargerThan/solution.hide.js diff --git a/exercises/067-removeNumbersLargerThan/test.js b/exercises/069-removeNumbersLargerThan/test.js similarity index 100% rename from exercises/067-removeNumbersLargerThan/test.js rename to exercises/069-removeNumbersLargerThan/test.js diff --git a/exercises/068-removeNumbersLessThan/README.es.md b/exercises/070-removeNumbersLessThan/README.es.md similarity index 92% rename from exercises/068-removeNumbersLessThan/README.es.md rename to exercises/070-removeNumbersLessThan/README.es.md index 8ab9c05f3..b4deb5d20 100644 --- a/exercises/068-removeNumbersLessThan/README.es.md +++ b/exercises/070-removeNumbersLessThan/README.es.md @@ -1,4 +1,4 @@ -# `068` removeNumbersLessThan +# `070` removeNumbersLessThan ## 📝 Instrucciones: diff --git a/exercises/068-removeNumbersLessThan/README.md b/exercises/070-removeNumbersLessThan/README.md similarity index 92% rename from exercises/068-removeNumbersLessThan/README.md rename to exercises/070-removeNumbersLessThan/README.md index a23a93a85..2bc550b55 100644 --- a/exercises/068-removeNumbersLessThan/README.md +++ b/exercises/070-removeNumbersLessThan/README.md @@ -1,4 +1,4 @@ -# `068` removeNumbersLessThan +# `070` removeNumbersLessThan ## 📝 Instructions: diff --git a/exercises/068-removeNumbersLessThan/app.js b/exercises/070-removeNumbersLessThan/app.js similarity index 100% rename from exercises/068-removeNumbersLessThan/app.js rename to exercises/070-removeNumbersLessThan/app.js diff --git a/exercises/068-removeNumbersLessThan/solution.hide.js b/exercises/070-removeNumbersLessThan/solution.hide.js similarity index 100% rename from exercises/068-removeNumbersLessThan/solution.hide.js rename to exercises/070-removeNumbersLessThan/solution.hide.js diff --git a/exercises/068-removeNumbersLessThan/test.js b/exercises/070-removeNumbersLessThan/test.js similarity index 100% rename from exercises/068-removeNumbersLessThan/test.js rename to exercises/070-removeNumbersLessThan/test.js diff --git a/exercises/069-removeStringValuesLongerThan/README.es.md b/exercises/071-removeStringValuesLongerThan/README.es.md similarity index 94% rename from exercises/069-removeStringValuesLongerThan/README.es.md rename to exercises/071-removeStringValuesLongerThan/README.es.md index b81daede9..1b8d8a238 100644 --- a/exercises/069-removeStringValuesLongerThan/README.es.md +++ b/exercises/071-removeStringValuesLongerThan/README.es.md @@ -1,4 +1,4 @@ -# `069` removeStringValuesLongerThan +# `071` removeStringValuesLongerThan ## 📝 Instrucciones: diff --git a/exercises/069-removeStringValuesLongerThan/README.md b/exercises/071-removeStringValuesLongerThan/README.md similarity index 93% rename from exercises/069-removeStringValuesLongerThan/README.md rename to exercises/071-removeStringValuesLongerThan/README.md index 90916f135..38e3fb73a 100644 --- a/exercises/069-removeStringValuesLongerThan/README.md +++ b/exercises/071-removeStringValuesLongerThan/README.md @@ -1,4 +1,4 @@ -# `069` removeStringValuesLongerThan +# `071` removeStringValuesLongerThan ## 📝 Instructions: diff --git a/exercises/069-removeStringValuesLongerThan/app.js b/exercises/071-removeStringValuesLongerThan/app.js similarity index 100% rename from exercises/069-removeStringValuesLongerThan/app.js rename to exercises/071-removeStringValuesLongerThan/app.js diff --git a/exercises/069-removeStringValuesLongerThan/solution.hide.js b/exercises/071-removeStringValuesLongerThan/solution.hide.js similarity index 100% rename from exercises/069-removeStringValuesLongerThan/solution.hide.js rename to exercises/071-removeStringValuesLongerThan/solution.hide.js diff --git a/exercises/069-removeStringValuesLongerThan/test.js b/exercises/071-removeStringValuesLongerThan/test.js similarity index 100% rename from exercises/069-removeStringValuesLongerThan/test.js rename to exercises/071-removeStringValuesLongerThan/test.js diff --git a/exercises/070-removeEvenValues/README.es.md b/exercises/072-removeEvenValues/README.es.md similarity index 94% rename from exercises/070-removeEvenValues/README.es.md rename to exercises/072-removeEvenValues/README.es.md index 20b955bec..e3520f42f 100644 --- a/exercises/070-removeEvenValues/README.es.md +++ b/exercises/072-removeEvenValues/README.es.md @@ -1,4 +1,4 @@ -# `070` removeEvenValues +# `072` removeEvenValues ## 📝 Instrucciones: diff --git a/exercises/070-removeEvenValues/README.md b/exercises/072-removeEvenValues/README.md similarity index 93% rename from exercises/070-removeEvenValues/README.md rename to exercises/072-removeEvenValues/README.md index cf7a28e6d..08468a810 100644 --- a/exercises/070-removeEvenValues/README.md +++ b/exercises/072-removeEvenValues/README.md @@ -1,4 +1,4 @@ -# `070` removeEvenValues +# `072` removeEvenValues ## 📝 Instructions: diff --git a/exercises/070-removeEvenValues/app.js b/exercises/072-removeEvenValues/app.js similarity index 100% rename from exercises/070-removeEvenValues/app.js rename to exercises/072-removeEvenValues/app.js diff --git a/exercises/070-removeEvenValues/solution.hide.js b/exercises/072-removeEvenValues/solution.hide.js similarity index 100% rename from exercises/070-removeEvenValues/solution.hide.js rename to exercises/072-removeEvenValues/solution.hide.js diff --git a/exercises/070-removeEvenValues/test.js b/exercises/072-removeEvenValues/test.js similarity index 100% rename from exercises/070-removeEvenValues/test.js rename to exercises/072-removeEvenValues/test.js diff --git a/exercises/071-countNumberOfKeys/README.es.md b/exercises/073-countNumberOfKeys/README.es.md similarity index 92% rename from exercises/071-countNumberOfKeys/README.es.md rename to exercises/073-countNumberOfKeys/README.es.md index 409a343ee..aeff04e53 100644 --- a/exercises/071-countNumberOfKeys/README.es.md +++ b/exercises/073-countNumberOfKeys/README.es.md @@ -1,4 +1,4 @@ -# `071` countNumberOfKeys +# `073` countNumberOfKeys ## 📝 Instrucciones: diff --git a/exercises/071-countNumberOfKeys/README.md b/exercises/073-countNumberOfKeys/README.md similarity index 92% rename from exercises/071-countNumberOfKeys/README.md rename to exercises/073-countNumberOfKeys/README.md index 78e0fc505..e2d261638 100644 --- a/exercises/071-countNumberOfKeys/README.md +++ b/exercises/073-countNumberOfKeys/README.md @@ -1,4 +1,4 @@ -# `071` countNumberOfKeys +# `073` countNumberOfKeys ## 📝 Instructions: diff --git a/exercises/071-countNumberOfKeys/app.js b/exercises/073-countNumberOfKeys/app.js similarity index 100% rename from exercises/071-countNumberOfKeys/app.js rename to exercises/073-countNumberOfKeys/app.js diff --git a/exercises/071-countNumberOfKeys/solution.hide.js b/exercises/073-countNumberOfKeys/solution.hide.js similarity index 100% rename from exercises/071-countNumberOfKeys/solution.hide.js rename to exercises/073-countNumberOfKeys/solution.hide.js diff --git a/exercises/071-countNumberOfKeys/test.js b/exercises/073-countNumberOfKeys/test.js similarity index 100% rename from exercises/071-countNumberOfKeys/test.js rename to exercises/073-countNumberOfKeys/test.js diff --git a/exercises/072-removeOddValues/README.es.md b/exercises/074-removeOddValues/README.es.md similarity index 92% rename from exercises/072-removeOddValues/README.es.md rename to exercises/074-removeOddValues/README.es.md index 568822b4b..5d5220000 100644 --- a/exercises/072-removeOddValues/README.es.md +++ b/exercises/074-removeOddValues/README.es.md @@ -1,4 +1,4 @@ -# `072` removeOddValues +# `074` removeOddValues ## 📝 Instrucciones: diff --git a/exercises/072-removeOddValues/README.md b/exercises/074-removeOddValues/README.md similarity index 92% rename from exercises/072-removeOddValues/README.md rename to exercises/074-removeOddValues/README.md index 5d0512bce..f6197d2a0 100644 --- a/exercises/072-removeOddValues/README.md +++ b/exercises/074-removeOddValues/README.md @@ -1,4 +1,4 @@ -# `072` removeOddValues +# `074` removeOddValues ## 📝 Instructions: diff --git a/exercises/072-removeOddValues/app.js b/exercises/074-removeOddValues/app.js similarity index 100% rename from exercises/072-removeOddValues/app.js rename to exercises/074-removeOddValues/app.js diff --git a/exercises/072-removeOddValues/solution.hide.js b/exercises/074-removeOddValues/solution.hide.js similarity index 100% rename from exercises/072-removeOddValues/solution.hide.js rename to exercises/074-removeOddValues/solution.hide.js diff --git a/exercises/072-removeOddValues/test.js b/exercises/074-removeOddValues/test.js similarity index 100% rename from exercises/072-removeOddValues/test.js rename to exercises/074-removeOddValues/test.js diff --git a/exercises/073-removeArrayValues/README.es.md b/exercises/075-removeArrayValues/README.es.md similarity index 92% rename from exercises/073-removeArrayValues/README.es.md rename to exercises/075-removeArrayValues/README.es.md index f96db32cc..030a8fea8 100644 --- a/exercises/073-removeArrayValues/README.es.md +++ b/exercises/075-removeArrayValues/README.es.md @@ -1,4 +1,4 @@ -# `073` removeArrayValues +# `075` removeArrayValues ## 📝 Instrucciones: diff --git a/exercises/073-removeArrayValues/README.md b/exercises/075-removeArrayValues/README.md similarity index 92% rename from exercises/073-removeArrayValues/README.md rename to exercises/075-removeArrayValues/README.md index 75729685b..083abc56a 100644 --- a/exercises/073-removeArrayValues/README.md +++ b/exercises/075-removeArrayValues/README.md @@ -1,4 +1,4 @@ -# `073` removeArrayValues +# `075` removeArrayValues ## 📝 Instructions: diff --git a/exercises/073-removeArrayValues/app.js b/exercises/075-removeArrayValues/app.js similarity index 100% rename from exercises/073-removeArrayValues/app.js rename to exercises/075-removeArrayValues/app.js diff --git a/exercises/073-removeArrayValues/solution.hide.js b/exercises/075-removeArrayValues/solution.hide.js similarity index 100% rename from exercises/073-removeArrayValues/solution.hide.js rename to exercises/075-removeArrayValues/solution.hide.js diff --git a/exercises/073-removeArrayValues/test.js b/exercises/075-removeArrayValues/test.js similarity index 100% rename from exercises/073-removeArrayValues/test.js rename to exercises/075-removeArrayValues/test.js diff --git a/exercises/074-removeNumberValues/README.es.md b/exercises/076-removeNumberValues/README.es.md similarity index 92% rename from exercises/074-removeNumberValues/README.es.md rename to exercises/076-removeNumberValues/README.es.md index 846a3dcbd..a079795e4 100644 --- a/exercises/074-removeNumberValues/README.es.md +++ b/exercises/076-removeNumberValues/README.es.md @@ -1,4 +1,4 @@ -# `074` removeNumberValues +# `076` removeNumberValues ## 📝 Instrucciones: diff --git a/exercises/074-removeNumberValues/README.md b/exercises/076-removeNumberValues/README.md similarity index 92% rename from exercises/074-removeNumberValues/README.md rename to exercises/076-removeNumberValues/README.md index de7ebe621..310627c51 100644 --- a/exercises/074-removeNumberValues/README.md +++ b/exercises/076-removeNumberValues/README.md @@ -1,4 +1,4 @@ -# `074` removeNumberValues +# `076` removeNumberValues ## 📝 Instructions: diff --git a/exercises/074-removeNumberValues/app.js b/exercises/076-removeNumberValues/app.js similarity index 100% rename from exercises/074-removeNumberValues/app.js rename to exercises/076-removeNumberValues/app.js diff --git a/exercises/074-removeNumberValues/solution.hide.js b/exercises/076-removeNumberValues/solution.hide.js similarity index 100% rename from exercises/074-removeNumberValues/solution.hide.js rename to exercises/076-removeNumberValues/solution.hide.js diff --git a/exercises/074-removeNumberValues/test.js b/exercises/076-removeNumberValues/test.js similarity index 100% rename from exercises/074-removeNumberValues/test.js rename to exercises/076-removeNumberValues/test.js diff --git a/exercises/075-removeStringValues/README.es.md b/exercises/077-removeStringValues/README.es.md similarity index 92% rename from exercises/075-removeStringValues/README.es.md rename to exercises/077-removeStringValues/README.es.md index ce805c0b0..cbf248df2 100644 --- a/exercises/075-removeStringValues/README.es.md +++ b/exercises/077-removeStringValues/README.es.md @@ -1,4 +1,4 @@ -# `075` removeStringValues +# `077` removeStringValues ## 📝 Instrucciones: diff --git a/exercises/075-removeStringValues/README.md b/exercises/077-removeStringValues/README.md similarity index 91% rename from exercises/075-removeStringValues/README.md rename to exercises/077-removeStringValues/README.md index ec11b7819..0ba215c27 100644 --- a/exercises/075-removeStringValues/README.md +++ b/exercises/077-removeStringValues/README.md @@ -1,4 +1,4 @@ -# `075` removeStringValues +# `077` removeStringValues ## 📝 Instructions: diff --git a/exercises/075-removeStringValues/app.js b/exercises/077-removeStringValues/app.js similarity index 100% rename from exercises/075-removeStringValues/app.js rename to exercises/077-removeStringValues/app.js diff --git a/exercises/075-removeStringValues/solution.hide.js b/exercises/077-removeStringValues/solution.hide.js similarity index 100% rename from exercises/075-removeStringValues/solution.hide.js rename to exercises/077-removeStringValues/solution.hide.js diff --git a/exercises/075-removeStringValues/test.js b/exercises/077-removeStringValues/test.js similarity index 100% rename from exercises/075-removeStringValues/test.js rename to exercises/077-removeStringValues/test.js diff --git a/exercises/076-convertDoubleSpaceToSingle/README.es.md b/exercises/078-convertDoubleSpaceToSingle/README.es.md similarity index 94% rename from exercises/076-convertDoubleSpaceToSingle/README.es.md rename to exercises/078-convertDoubleSpaceToSingle/README.es.md index 1310d0f14..935f83704 100644 --- a/exercises/076-convertDoubleSpaceToSingle/README.es.md +++ b/exercises/078-convertDoubleSpaceToSingle/README.es.md @@ -1,4 +1,4 @@ -# `076` convertDoubleSpaceToSingle +# `078` convertDoubleSpaceToSingle ## 📝 Instrucciones: diff --git a/exercises/076-convertDoubleSpaceToSingle/README.md b/exercises/078-convertDoubleSpaceToSingle/README.md similarity index 94% rename from exercises/076-convertDoubleSpaceToSingle/README.md rename to exercises/078-convertDoubleSpaceToSingle/README.md index ef30913e0..7acf4a51a 100644 --- a/exercises/076-convertDoubleSpaceToSingle/README.md +++ b/exercises/078-convertDoubleSpaceToSingle/README.md @@ -1,4 +1,4 @@ -# `076` convertDoubleSpaceToSingle +# `078` convertDoubleSpaceToSingle ## 📝 Instructions: diff --git a/exercises/076-convertDoubleSpaceToSingle/app.js b/exercises/078-convertDoubleSpaceToSingle/app.js similarity index 100% rename from exercises/076-convertDoubleSpaceToSingle/app.js rename to exercises/078-convertDoubleSpaceToSingle/app.js diff --git a/exercises/076-convertDoubleSpaceToSingle/solution.hide.js b/exercises/078-convertDoubleSpaceToSingle/solution.hide.js similarity index 100% rename from exercises/076-convertDoubleSpaceToSingle/solution.hide.js rename to exercises/078-convertDoubleSpaceToSingle/solution.hide.js diff --git a/exercises/076-convertDoubleSpaceToSingle/test.js b/exercises/078-convertDoubleSpaceToSingle/test.js similarity index 100% rename from exercises/076-convertDoubleSpaceToSingle/test.js rename to exercises/078-convertDoubleSpaceToSingle/test.js diff --git a/exercises/077-areValidCredentials/README.es.md b/exercises/079-areValidCredentials/README.es.md similarity index 93% rename from exercises/077-areValidCredentials/README.es.md rename to exercises/079-areValidCredentials/README.es.md index 7b39b3462..0323e9e9b 100644 --- a/exercises/077-areValidCredentials/README.es.md +++ b/exercises/079-areValidCredentials/README.es.md @@ -1,4 +1,4 @@ -# `077` areValidCredentials +# `079` areValidCredentials ## 📝 Instrucciones: diff --git a/exercises/077-areValidCredentials/README.md b/exercises/079-areValidCredentials/README.md similarity index 93% rename from exercises/077-areValidCredentials/README.md rename to exercises/079-areValidCredentials/README.md index 12a1ab8a5..111ae66dd 100644 --- a/exercises/077-areValidCredentials/README.md +++ b/exercises/079-areValidCredentials/README.md @@ -1,4 +1,4 @@ -# `077` areValidCredentials +# `079` areValidCredentials ## 📝 Instructions: diff --git a/exercises/077-areValidCredentials/app.js b/exercises/079-areValidCredentials/app.js similarity index 100% rename from exercises/077-areValidCredentials/app.js rename to exercises/079-areValidCredentials/app.js diff --git a/exercises/077-areValidCredentials/solution.hide.js b/exercises/079-areValidCredentials/solution.hide.js similarity index 100% rename from exercises/077-areValidCredentials/solution.hide.js rename to exercises/079-areValidCredentials/solution.hide.js diff --git a/exercises/077-areValidCredentials/test.js b/exercises/079-areValidCredentials/test.js similarity index 100% rename from exercises/077-areValidCredentials/test.js rename to exercises/079-areValidCredentials/test.js diff --git a/exercises/078-getIndexOf/README.es.md b/exercises/080-getIndexOf/README.es.md similarity index 97% rename from exercises/078-getIndexOf/README.es.md rename to exercises/080-getIndexOf/README.es.md index bb1d9d016..b24e70d5c 100644 --- a/exercises/078-getIndexOf/README.es.md +++ b/exercises/080-getIndexOf/README.es.md @@ -1,4 +1,4 @@ -# `078` getIndexOf +# `080` getIndexOf ## 📝 Instrucciones: diff --git a/exercises/078-getIndexOf/README.md b/exercises/080-getIndexOf/README.md similarity index 97% rename from exercises/078-getIndexOf/README.md rename to exercises/080-getIndexOf/README.md index 5a3950e3d..fc827170e 100644 --- a/exercises/078-getIndexOf/README.md +++ b/exercises/080-getIndexOf/README.md @@ -1,4 +1,4 @@ -# `078` getIndexOf +# `080` getIndexOf ## 📝 Instructions: diff --git a/exercises/078-getIndexOf/app.js b/exercises/080-getIndexOf/app.js similarity index 100% rename from exercises/078-getIndexOf/app.js rename to exercises/080-getIndexOf/app.js diff --git a/exercises/078-getIndexOf/solution.hide.js b/exercises/080-getIndexOf/solution.hide.js similarity index 100% rename from exercises/078-getIndexOf/solution.hide.js rename to exercises/080-getIndexOf/solution.hide.js diff --git a/exercises/078-getIndexOf/test.js b/exercises/080-getIndexOf/test.js similarity index 100% rename from exercises/078-getIndexOf/test.js rename to exercises/080-getIndexOf/test.js diff --git a/exercises/079-findMinLengthOfThreeWords/README.es.md b/exercises/081-findMinLengthOfThreeWords/README.es.md similarity index 92% rename from exercises/079-findMinLengthOfThreeWords/README.es.md rename to exercises/081-findMinLengthOfThreeWords/README.es.md index 49b4e0940..f7b92808d 100644 --- a/exercises/079-findMinLengthOfThreeWords/README.es.md +++ b/exercises/081-findMinLengthOfThreeWords/README.es.md @@ -1,4 +1,4 @@ -# `079` findMinLengthOfThreeWords +# `081` findMinLengthOfThreeWords ## 📝 Instrucciones: diff --git a/exercises/079-findMinLengthOfThreeWords/README.md b/exercises/081-findMinLengthOfThreeWords/README.md similarity index 91% rename from exercises/079-findMinLengthOfThreeWords/README.md rename to exercises/081-findMinLengthOfThreeWords/README.md index fa10ddfe2..44afb0f94 100644 --- a/exercises/079-findMinLengthOfThreeWords/README.md +++ b/exercises/081-findMinLengthOfThreeWords/README.md @@ -1,4 +1,4 @@ -# `079` findMinLengthOfThreeWords +# `081` findMinLengthOfThreeWords ## 📝 Instructions: diff --git a/exercises/079-findMinLengthOfThreeWords/app.js b/exercises/081-findMinLengthOfThreeWords/app.js similarity index 100% rename from exercises/079-findMinLengthOfThreeWords/app.js rename to exercises/081-findMinLengthOfThreeWords/app.js diff --git a/exercises/079-findMinLengthOfThreeWords/solution.hide.js b/exercises/081-findMinLengthOfThreeWords/solution.hide.js similarity index 100% rename from exercises/079-findMinLengthOfThreeWords/solution.hide.js rename to exercises/081-findMinLengthOfThreeWords/solution.hide.js diff --git a/exercises/079-findMinLengthOfThreeWords/test.js b/exercises/081-findMinLengthOfThreeWords/test.js similarity index 100% rename from exercises/079-findMinLengthOfThreeWords/test.js rename to exercises/081-findMinLengthOfThreeWords/test.js diff --git a/exercises/080-findMaxLengthOfThreeWords/README.es.md b/exercises/082-findMaxLengthOfThreeWords/README.es.md similarity index 92% rename from exercises/080-findMaxLengthOfThreeWords/README.es.md rename to exercises/082-findMaxLengthOfThreeWords/README.es.md index eff0bb3fa..2ef6b85d3 100644 --- a/exercises/080-findMaxLengthOfThreeWords/README.es.md +++ b/exercises/082-findMaxLengthOfThreeWords/README.es.md @@ -1,4 +1,4 @@ -# `080` findMaxLengthOfThreeWords +# `082` findMaxLengthOfThreeWords ## 📝 Instrucciones: diff --git a/exercises/080-findMaxLengthOfThreeWords/README.md b/exercises/082-findMaxLengthOfThreeWords/README.md similarity index 91% rename from exercises/080-findMaxLengthOfThreeWords/README.md rename to exercises/082-findMaxLengthOfThreeWords/README.md index 439600f57..1baff7ac1 100644 --- a/exercises/080-findMaxLengthOfThreeWords/README.md +++ b/exercises/082-findMaxLengthOfThreeWords/README.md @@ -1,4 +1,4 @@ -# `080` findMaxLengthOfThreeWords +# `082` findMaxLengthOfThreeWords ## 📝 Instructions: diff --git a/exercises/080-findMaxLengthOfThreeWords/app.js b/exercises/082-findMaxLengthOfThreeWords/app.js similarity index 100% rename from exercises/080-findMaxLengthOfThreeWords/app.js rename to exercises/082-findMaxLengthOfThreeWords/app.js diff --git a/exercises/080-findMaxLengthOfThreeWords/solution.hide.js b/exercises/082-findMaxLengthOfThreeWords/solution.hide.js similarity index 100% rename from exercises/080-findMaxLengthOfThreeWords/solution.hide.js rename to exercises/082-findMaxLengthOfThreeWords/solution.hide.js diff --git a/exercises/080-findMaxLengthOfThreeWords/test.js b/exercises/082-findMaxLengthOfThreeWords/test.js similarity index 100% rename from exercises/080-findMaxLengthOfThreeWords/test.js rename to exercises/082-findMaxLengthOfThreeWords/test.js diff --git a/exercises/082-theBeatles/README.es.md b/exercises/082-theBeatles/README.es.md new file mode 100644 index 000000000..5c884f393 --- /dev/null +++ b/exercises/082-theBeatles/README.es.md @@ -0,0 +1,27 @@ +# `082` The Beatles + +¿A quién no le gustan Los Beatles? Un estudio de la BBC ha mostrado que el 90% de los niños de ahora no conocen la banda... Qué triste... 😟 + +Abajo está el coro de una de las canciones más famosas de Los Beatles, *Let it be*: + +> Let it be, let it be, let it be, let it be + +> Whisper words of wisdom + +> Let it be + +## 📝 Instrucciones: + +1. Crea una función llamada `sing()` que devuelva un string con la letra exacta que puedes oír desde el minuto 3:20 hasta el final de la canción a los 3:50 minutos. + +## 💻 Resultado esperado: + +```js +"let it be, let it be, let it be, let it be, there will be an answer, let it be, let it be, let it be, let it be, let it be, whisper words of wisdom, let it be" +``` + +## 💡 Pistas: + ++ Las palabras `let it be` se repiten todo el tiempo, probablemente debas crear un bucle (loop) para eso. + ++ Aquí está la canción: https://www.youtube.com/watch?v=QDYfEBY9NM4 diff --git a/exercises/082-theBeatles/README.md b/exercises/082-theBeatles/README.md new file mode 100644 index 000000000..ee5955a4f --- /dev/null +++ b/exercises/082-theBeatles/README.md @@ -0,0 +1,27 @@ +# `082` The Beatles + +Who doesn't like The Beatles? A BBC study reported that 90% of kids today don't know the band. Heartbreaking... 😟 + +Below is the chorus of one of the most famous Beatles songs, *Let It Be*: + +> Let it be, let it be, let it be, let it be + +> Whisper words of wisdom + +> Let it be + +## 📝 Instructions: + +1. Create a function called `sing()` that returns a string with the exact same lyrics which you can hear from the 3:20 mark to the end of the song at 3:50. + +## 💻 Expected output: + +```js +"let it be, let it be, let it be, let it be, there will be an answer, let it be, let it be, let it be, let it be, let it be, whisper words of wisdom, let it be" +``` + +## 💡 Hints: + ++ The words `let it be` are repeated in the string. Creating a loop would be a good idea. + ++ Here is the song: https://www.youtube.com/watch?v=QDYfEBY9NM4 diff --git a/exercises/082-theBeatles/app.js b/exercises/082-theBeatles/app.js new file mode 100644 index 000000000..1111c7931 --- /dev/null +++ b/exercises/082-theBeatles/app.js @@ -0,0 +1,5 @@ + + +//Your code above ^^^ + +console.log(sing()); \ No newline at end of file diff --git a/exercises/082-theBeatles/solution.hide.js b/exercises/082-theBeatles/solution.hide.js new file mode 100644 index 000000000..1136e9f19 --- /dev/null +++ b/exercises/082-theBeatles/solution.hide.js @@ -0,0 +1,13 @@ +function sing(){ + let str = ""; + for(let i = 0; i < 11; i++){ + if(i === 4) str += 'there will be an answer, '; + else if (i === 10) str += 'whisper words of wisdom, let it be'; + else str += 'let it be, '; + } + return str; +} + +//Your code above ^^^ + +console.log(sing()); diff --git a/exercises/082-theBeatles/tests.js b/exercises/082-theBeatles/tests.js new file mode 100644 index 000000000..2386c41ee --- /dev/null +++ b/exercises/082-theBeatles/tests.js @@ -0,0 +1,47 @@ + +const fs = require('fs'); +const path = require('path'); +const rewire = require('rewire'); + +jest.dontMock('fs'); +//here we are going to store and accumulate (concatenate) all the console log's from the exercise +let _buffer = ""; +let _log = console.log; + +// let's override the console.log function to mock it, +// but we are also going to save what is supposed to be the output of the console inside _buffer +global.console.log = console.log = jest.fn((text) => _buffer += text + "\n"); + +it('Use a for loop', function () { + const app_content = fs.readFileSync(path.resolve(__dirname, './app.js'), 'utf8'); + expect(app_content).toMatch(/for(\s*)\(/); +}); + +test("Function sing should exist", function () { + const file = rewire("./app.js"); + const sing = file.__get__('sing'); + expect(sing).toBeTruthy(); +}); + +test("Function sing should return the exact lyrics of the song", function () { + const file = rewire("./app.js"); + const sing = file.__get__('sing'); + expect(sing()).toBe('let it be, let it be, let it be, let it be, there will be an answer, let it be, let it be, let it be, let it be, let it be, whisper words of wisdom, let it be'); +}); + + +describe('All the javascript should match', function () { + beforeEach(() => { + //here I import the HTML into the document + }); + afterEach(() => { jest.resetModules(); }); + + it('console.log() function should be called with proper lyrics order', function () { + + const file = require("./app.js"); + + expect(console.log).toHaveBeenCalledWith("let it be, let it be, let it be, let it be, there will be an answer, let it be, let it be, let it be, let it be, let it be, whisper words of wisdom, let it be"); + + expect(console.log.mock.calls.length).toBe(1); + }); +}); diff --git a/exercises/083-bottlesOfMilk/README.es.md b/exercises/083-bottlesOfMilk/README.es.md new file mode 100644 index 000000000..026bc9bc5 --- /dev/null +++ b/exercises/083-bottlesOfMilk/README.es.md @@ -0,0 +1,29 @@ +# `083` Bottles of Milk + +¿Has escuchado la canción sobre 99 botellas de leche (99 bottles of milk)? Es una gran canción - para nada aburrida...😆 + +Aquí la puedes escuchar: https://www.youtube.com/watch?v=Xy-da43E6Lo + +## 📝 Instrucciones: + +1. Escribe un algoritmo para imprimir la misma letra. Debes usar un `for` loop. + +## 💻 Resultado esperado: + +```js +`99 bottles of milk on the wall, 99 bottles of milk. Take one down and pass it around, 98 bottles of milk on the wall.` + +`98 bottles of milk on the wall, 98 bottles of milk. Take one down and pass it around, 97 bottles of milk on the wall.` + +... + +`1 bottle of milk on the wall, 1 bottle of milk. Take one down and pass it around, no more bottles of milk on the wall.` + +`No more bottles of milk on the wall, no more bottles of milk. Go to the store and buy some more, 99 bottles of milk on the wall.` +``` + +## 💡 Pistas: + ++ Al final de la canción, la letra cambia porque es sólo una botella (singular en vez de plural). + ++ Lee la última parte de la letra y verás como la última línea cambia a `Go to the store and buy some more` (anda a comprar más leche). diff --git a/exercises/083-bottlesOfMilk/README.md b/exercises/083-bottlesOfMilk/README.md new file mode 100644 index 000000000..f71f73086 --- /dev/null +++ b/exercises/083-bottlesOfMilk/README.md @@ -0,0 +1,31 @@ +# `083` Bottles of Milk + +Have you heard the song about 99 bottles of milk? It is a great song - not boring at all... 😆 + +Here you can hear it: https://www.youtube.com/watch?v=Xy-da43E6Lo + +## 📝 Instructions: + +1. Write an algorithm to print the exact same lyrics. You must use a `for` loop. + +## 💻 Expected output: + +```js +`99 bottles of milk on the wall, 99 bottles of milk. Take one down and pass it around, 98 bottles of milk on the wall.` + +`98 bottles of milk on the wall, 98 bottles of milk. Take one down and pass it around, 97 bottles of milk on the wall.` + +... + +`1 bottle of milk on the wall, 1 bottle of milk. Take one down and pass it around, no more bottles of milk on the wall.` + +`No more bottles of milk on the wall, no more bottles of milk. Go to the store and buy some more, 99 bottles of milk on the wall.` +``` + +## 💡 Hint: + ++ The lyrics change slightly when there is one bottle left (singular instead of plural). + ++ When there are no more bottles, the last verse changes to `Go to the store and buy some more`. + + diff --git a/exercises/083-bottlesOfMilk/app.js b/exercises/083-bottlesOfMilk/app.js new file mode 100644 index 000000000..f37016c1a --- /dev/null +++ b/exercises/083-bottlesOfMilk/app.js @@ -0,0 +1 @@ +// Your code here: diff --git a/exercises/083-bottlesOfMilk/solution.hide.js b/exercises/083-bottlesOfMilk/solution.hide.js new file mode 100644 index 000000000..b55be0104 --- /dev/null +++ b/exercises/083-bottlesOfMilk/solution.hide.js @@ -0,0 +1,15 @@ +function song(){ + for (let i = 99; i >= 0; i--) { + if (i == 1) { + console.log("1 bottle of milk on the wall, 1 bottle of milk. Take one down and pass it around, no more bottles of milk on the wall."); + } else if (i == 0) { + console.log("No more bottles of milk on the wall, no more bottles of milk. Go to the store and buy some more, 99 bottles of milk on the wall."); + } else if (i== 2) { + console.log(`${i} bottles of milk on the wall, ${i} bottles of milk. Take one down and pass it around, ${i-1} bottle of milk on the wall.`); + } else { + console.log(`${i} bottles of milk on the wall, ${i} bottles of milk. Take one down and pass it around, ${i-1} bottles of milk on the wall.`); + } + } +} + +song() \ No newline at end of file diff --git a/exercises/083-bottlesOfMilk/tests.js b/exercises/083-bottlesOfMilk/tests.js new file mode 100644 index 000000000..18f446347 --- /dev/null +++ b/exercises/083-bottlesOfMilk/tests.js @@ -0,0 +1,52 @@ +const fs = require('fs'); +const path = require('path'); +const js = fs.readFileSync(path.resolve(__dirname, './app.js'), 'utf8'); + +jest.dontMock('fs'); +//here we are going to store and accumulate (concatenate) all the console log's from the exercise +let _buffer = ""; +let _log = console.log; + +// let's override the console.log function to mock it, +// but we are also going to save what is supposed to be the output of the console inside _buffer +global.console.log = console.log = jest.fn((text) => _buffer += text + "\n"); + +describe('All the javascript should match', function () { + it('console.log() function should be called 99 or 100 times (depending on your approach)', function () { + const file = require("./app.js"); + expect([100,99].includes(console.log.mock.calls.length)).toBeTruthy(); + }); + + it('Use a for loop', function () { + const app_content = fs.readFileSync(path.resolve(__dirname, './app.js'), 'utf8'); + expect(app_content).toMatch(/for(\s*)\(/); + }); + + it('console.log() function should be called with proper lyrics for more than one bottle', function () { + const file = require("./app.js"); + for(let i = 99; i > 2; i--){ + expect(_buffer).toContain(`${i} bottles of milk on the wall, ${i} bottles of milk. Take one down and pass it around, ${i-1} bottles of milk on the wall.`); + } + }); + + it('console.log() function should be called with proper lyrics for two bottles', function () { + const file = require("./app.js"); + expect(_buffer).toContain("2 bottles of milk on the wall, 2 bottles of milk. Take one down and pass it around, 1 bottle of milk on the wall."); + }); + + it('console.log() function should be called with proper lyrics for one bottle', function () { + const file = require("./app.js"); + expect(_buffer).toContain("1 bottle of milk on the wall, 1 bottle of milk. Take one down and pass it around, no more bottles of milk on the wall."); + }); + + it('console.log() function should be called with proper lyrics for 0 bottles', function () { + const file = require("./app.js"); + expect(_buffer).toContain("No more bottles of milk on the wall, no more bottles of milk. Go to the store and buy some more, 99 bottles of milk on the wall."); + }); + + it('You should use a for loop to print the lyrics of the song', function () { + const file = require("./app.js"); + let regex = /for\s*\(/gm + expect(regex.test(js.toString())).toBeTruthy(); + }); +}); diff --git a/exercises/081-repeatString/README.es.md b/exercises/083-repeatString/README.es.md similarity index 95% rename from exercises/081-repeatString/README.es.md rename to exercises/083-repeatString/README.es.md index f42f8e76b..2a8fb96e1 100644 --- a/exercises/081-repeatString/README.es.md +++ b/exercises/083-repeatString/README.es.md @@ -1,4 +1,4 @@ -# `081` repeatString +# `083` repeatString ## 📝 Instrucciones: diff --git a/exercises/081-repeatString/README.md b/exercises/083-repeatString/README.md similarity index 95% rename from exercises/081-repeatString/README.md rename to exercises/083-repeatString/README.md index 094f19591..501664250 100644 --- a/exercises/081-repeatString/README.md +++ b/exercises/083-repeatString/README.md @@ -1,4 +1,4 @@ -# `081` repeatString +# `083` repeatString ## 📝 Instructions: diff --git a/exercises/081-repeatString/app.js b/exercises/083-repeatString/app.js similarity index 100% rename from exercises/081-repeatString/app.js rename to exercises/083-repeatString/app.js diff --git a/exercises/081-repeatString/solution.hide.js b/exercises/083-repeatString/solution.hide.js similarity index 100% rename from exercises/081-repeatString/solution.hide.js rename to exercises/083-repeatString/solution.hide.js diff --git a/exercises/081-repeatString/test.js b/exercises/083-repeatString/test.js similarity index 100% rename from exercises/081-repeatString/test.js rename to exercises/083-repeatString/test.js diff --git a/exercises/082-getLongestOfThreeWords/README.es.md b/exercises/085-getLongestOfThreeWords/README.es.md similarity index 92% rename from exercises/082-getLongestOfThreeWords/README.es.md rename to exercises/085-getLongestOfThreeWords/README.es.md index 580eaaa4a..8ee6571d5 100644 --- a/exercises/082-getLongestOfThreeWords/README.es.md +++ b/exercises/085-getLongestOfThreeWords/README.es.md @@ -1,4 +1,4 @@ -# `082` getLongestOfThreeWords +# `085` getLongestOfThreeWords ## 📝 Instrucciones: diff --git a/exercises/082-getLongestOfThreeWords/README.md b/exercises/085-getLongestOfThreeWords/README.md similarity index 92% rename from exercises/082-getLongestOfThreeWords/README.md rename to exercises/085-getLongestOfThreeWords/README.md index 4fea09c44..3065cc107 100644 --- a/exercises/082-getLongestOfThreeWords/README.md +++ b/exercises/085-getLongestOfThreeWords/README.md @@ -1,4 +1,4 @@ -# `082` getLongestOfThreeWords +# `085` getLongestOfThreeWords ## 📝 Instructions: diff --git a/exercises/082-getLongestOfThreeWords/app.js b/exercises/085-getLongestOfThreeWords/app.js similarity index 100% rename from exercises/082-getLongestOfThreeWords/app.js rename to exercises/085-getLongestOfThreeWords/app.js diff --git a/exercises/082-getLongestOfThreeWords/solution.hide.js b/exercises/085-getLongestOfThreeWords/solution.hide.js similarity index 100% rename from exercises/082-getLongestOfThreeWords/solution.hide.js rename to exercises/085-getLongestOfThreeWords/solution.hide.js diff --git a/exercises/082-getLongestOfThreeWords/test.js b/exercises/085-getLongestOfThreeWords/test.js similarity index 100% rename from exercises/082-getLongestOfThreeWords/test.js rename to exercises/085-getLongestOfThreeWords/test.js diff --git a/exercises/083-findShortestOfThreeWords/README.es.md b/exercises/087-findShortestOfThreeWords/README.es.md similarity index 92% rename from exercises/083-findShortestOfThreeWords/README.es.md rename to exercises/087-findShortestOfThreeWords/README.es.md index c977a2e53..b52f8d6fa 100644 --- a/exercises/083-findShortestOfThreeWords/README.es.md +++ b/exercises/087-findShortestOfThreeWords/README.es.md @@ -1,4 +1,4 @@ -# `083` findShortestOfThreeWords +# `087` findShortestOfThreeWords ## 📝 Instrucciones: diff --git a/exercises/083-findShortestOfThreeWords/README.md b/exercises/087-findShortestOfThreeWords/README.md similarity index 92% rename from exercises/083-findShortestOfThreeWords/README.md rename to exercises/087-findShortestOfThreeWords/README.md index 1d6c13816..d76961136 100644 --- a/exercises/083-findShortestOfThreeWords/README.md +++ b/exercises/087-findShortestOfThreeWords/README.md @@ -1,4 +1,4 @@ -# `083` findShortestOfThreeWords +# `087` findShortestOfThreeWords ## 📝 Instructions: diff --git a/exercises/083-findShortestOfThreeWords/app.js b/exercises/087-findShortestOfThreeWords/app.js similarity index 100% rename from exercises/083-findShortestOfThreeWords/app.js rename to exercises/087-findShortestOfThreeWords/app.js diff --git a/exercises/083-findShortestOfThreeWords/solution.hide.js b/exercises/087-findShortestOfThreeWords/solution.hide.js similarity index 100% rename from exercises/083-findShortestOfThreeWords/solution.hide.js rename to exercises/087-findShortestOfThreeWords/solution.hide.js diff --git a/exercises/083-findShortestOfThreeWords/test.js b/exercises/087-findShortestOfThreeWords/test.js similarity index 100% rename from exercises/083-findShortestOfThreeWords/test.js rename to exercises/087-findShortestOfThreeWords/test.js diff --git a/exercises/084-joinThreeArrays/README.es.md b/exercises/088-joinThreeArrays/README.es.md similarity index 94% rename from exercises/084-joinThreeArrays/README.es.md rename to exercises/088-joinThreeArrays/README.es.md index 71261e035..b3d9b7e7b 100644 --- a/exercises/084-joinThreeArrays/README.es.md +++ b/exercises/088-joinThreeArrays/README.es.md @@ -1,4 +1,4 @@ -# `084` joinThreeArrays +# `088` joinThreeArrays ## 📝 Instrucciones: diff --git a/exercises/084-joinThreeArrays/README.md b/exercises/088-joinThreeArrays/README.md similarity index 95% rename from exercises/084-joinThreeArrays/README.md rename to exercises/088-joinThreeArrays/README.md index 84cefeb1d..e64efa27f 100644 --- a/exercises/084-joinThreeArrays/README.md +++ b/exercises/088-joinThreeArrays/README.md @@ -1,4 +1,4 @@ -# `084` joinThreeArrays +# `088` joinThreeArrays ## 📝 Instructions: diff --git a/exercises/084-joinThreeArrays/app.js b/exercises/088-joinThreeArrays/app.js similarity index 100% rename from exercises/084-joinThreeArrays/app.js rename to exercises/088-joinThreeArrays/app.js diff --git a/exercises/084-joinThreeArrays/solution.hide.js b/exercises/088-joinThreeArrays/solution.hide.js similarity index 100% rename from exercises/084-joinThreeArrays/solution.hide.js rename to exercises/088-joinThreeArrays/solution.hide.js diff --git a/exercises/084-joinThreeArrays/test.js b/exercises/088-joinThreeArrays/test.js similarity index 100% rename from exercises/084-joinThreeArrays/test.js rename to exercises/088-joinThreeArrays/test.js diff --git a/exercises/085-addToFrontOfNew/README.es.md b/exercises/089-addToFrontOfNew/README.es.md similarity index 95% rename from exercises/085-addToFrontOfNew/README.es.md rename to exercises/089-addToFrontOfNew/README.es.md index 5eb3131ca..4c3ebbd03 100644 --- a/exercises/085-addToFrontOfNew/README.es.md +++ b/exercises/089-addToFrontOfNew/README.es.md @@ -1,4 +1,4 @@ -# `085` addToFrontOfNew +# `089` addToFrontOfNew ## 📝 Instrucciones: diff --git a/exercises/085-addToFrontOfNew/README.md b/exercises/089-addToFrontOfNew/README.md similarity index 95% rename from exercises/085-addToFrontOfNew/README.md rename to exercises/089-addToFrontOfNew/README.md index f0099b39f..1ff95be84 100644 --- a/exercises/085-addToFrontOfNew/README.md +++ b/exercises/089-addToFrontOfNew/README.md @@ -1,4 +1,4 @@ -# `085` addToFrontOfNew +# `089` addToFrontOfNew ## 📝 Instructions: diff --git a/exercises/085-addToFrontOfNew/app.js b/exercises/089-addToFrontOfNew/app.js similarity index 100% rename from exercises/085-addToFrontOfNew/app.js rename to exercises/089-addToFrontOfNew/app.js diff --git a/exercises/085-addToFrontOfNew/solution.hide.js b/exercises/089-addToFrontOfNew/solution.hide.js similarity index 100% rename from exercises/085-addToFrontOfNew/solution.hide.js rename to exercises/089-addToFrontOfNew/solution.hide.js diff --git a/exercises/085-addToFrontOfNew/test.js b/exercises/089-addToFrontOfNew/test.js similarity index 100% rename from exercises/085-addToFrontOfNew/test.js rename to exercises/089-addToFrontOfNew/test.js diff --git a/exercises/086-addToBackOfNew/README.es.md b/exercises/090-addToBackOfNew/README.es.md similarity index 94% rename from exercises/086-addToBackOfNew/README.es.md rename to exercises/090-addToBackOfNew/README.es.md index c0fc793bf..f764b8006 100644 --- a/exercises/086-addToBackOfNew/README.es.md +++ b/exercises/090-addToBackOfNew/README.es.md @@ -1,4 +1,4 @@ -# `086` addToBackOfNew +# `090` addToBackOfNew ## 📝 Instrucciones: diff --git a/exercises/086-addToBackOfNew/README.md b/exercises/090-addToBackOfNew/README.md similarity index 95% rename from exercises/086-addToBackOfNew/README.md rename to exercises/090-addToBackOfNew/README.md index 09ed471df..32f51a796 100644 --- a/exercises/086-addToBackOfNew/README.md +++ b/exercises/090-addToBackOfNew/README.md @@ -1,4 +1,4 @@ -# `086` addToBackOfNew +# `090` addToBackOfNew ## 📝 Instructions: diff --git a/exercises/086-addToBackOfNew/app.js b/exercises/090-addToBackOfNew/app.js similarity index 100% rename from exercises/086-addToBackOfNew/app.js rename to exercises/090-addToBackOfNew/app.js diff --git a/exercises/086-addToBackOfNew/solution.hide.js b/exercises/090-addToBackOfNew/solution.hide.js similarity index 100% rename from exercises/086-addToBackOfNew/solution.hide.js rename to exercises/090-addToBackOfNew/solution.hide.js diff --git a/exercises/086-addToBackOfNew/test.js b/exercises/090-addToBackOfNew/test.js similarity index 100% rename from exercises/086-addToBackOfNew/test.js rename to exercises/090-addToBackOfNew/test.js diff --git a/exercises/087-getAllElementsButNth/README.es.md b/exercises/091-getAllElementsButNth/README.es.md similarity index 93% rename from exercises/087-getAllElementsButNth/README.es.md rename to exercises/091-getAllElementsButNth/README.es.md index 1e5ecf8b9..df3b556c2 100644 --- a/exercises/087-getAllElementsButNth/README.es.md +++ b/exercises/091-getAllElementsButNth/README.es.md @@ -1,4 +1,4 @@ -# `087` getAllElementsButNth +# `091` getAllElementsButNth ## 📝 Instrucciones: diff --git a/exercises/087-getAllElementsButNth/README.md b/exercises/091-getAllElementsButNth/README.md similarity index 93% rename from exercises/087-getAllElementsButNth/README.md rename to exercises/091-getAllElementsButNth/README.md index 3d973ca24..7e3eb851b 100644 --- a/exercises/087-getAllElementsButNth/README.md +++ b/exercises/091-getAllElementsButNth/README.md @@ -1,4 +1,4 @@ -# `087` getAllElementsButNth +# `091` getAllElementsButNth ## 📝 Instructions: diff --git a/exercises/087-getAllElementsButNth/app.js b/exercises/091-getAllElementsButNth/app.js similarity index 100% rename from exercises/087-getAllElementsButNth/app.js rename to exercises/091-getAllElementsButNth/app.js diff --git a/exercises/087-getAllElementsButNth/solution.hide.js b/exercises/091-getAllElementsButNth/solution.hide.js similarity index 100% rename from exercises/087-getAllElementsButNth/solution.hide.js rename to exercises/091-getAllElementsButNth/solution.hide.js diff --git a/exercises/087-getAllElementsButNth/test.js b/exercises/091-getAllElementsButNth/test.js similarity index 100% rename from exercises/087-getAllElementsButNth/test.js rename to exercises/091-getAllElementsButNth/test.js diff --git a/exercises/088-keep/README.es.md b/exercises/092-keep/README.es.md similarity index 97% rename from exercises/088-keep/README.es.md rename to exercises/092-keep/README.es.md index 64f2d54a9..7fbe87a3d 100644 --- a/exercises/088-keep/README.es.md +++ b/exercises/092-keep/README.es.md @@ -1,4 +1,4 @@ -# `088` keep +# `092` keep ## 📝 Instrucciones: diff --git a/exercises/088-keep/README.md b/exercises/092-keep/README.md similarity index 97% rename from exercises/088-keep/README.md rename to exercises/092-keep/README.md index 76101ae73..dfa72d1d6 100644 --- a/exercises/088-keep/README.md +++ b/exercises/092-keep/README.md @@ -1,4 +1,4 @@ -# `088` keep +# `092` keep ## 📝 Instructions: diff --git a/exercises/088-keep/app.js b/exercises/092-keep/app.js similarity index 100% rename from exercises/088-keep/app.js rename to exercises/092-keep/app.js diff --git a/exercises/088-keep/solution.hide.js b/exercises/092-keep/solution.hide.js similarity index 100% rename from exercises/088-keep/solution.hide.js rename to exercises/092-keep/solution.hide.js diff --git a/exercises/088-keep/test.js b/exercises/092-keep/test.js similarity index 100% rename from exercises/088-keep/test.js rename to exercises/092-keep/test.js diff --git a/exercises/089-removeElement/README.es.md b/exercises/093-removeElement/README.es.md similarity index 96% rename from exercises/089-removeElement/README.es.md rename to exercises/093-removeElement/README.es.md index dfc37f8c2..8648e95d5 100644 --- a/exercises/089-removeElement/README.es.md +++ b/exercises/093-removeElement/README.es.md @@ -1,4 +1,4 @@ -# `089` removeElement +# `093` removeElement ## 📝 Instrucciones: diff --git a/exercises/089-removeElement/README.md b/exercises/093-removeElement/README.md similarity index 96% rename from exercises/089-removeElement/README.md rename to exercises/093-removeElement/README.md index 80f4729e7..2b3535cc5 100644 --- a/exercises/089-removeElement/README.md +++ b/exercises/093-removeElement/README.md @@ -1,4 +1,4 @@ -# `089` removeElement +# `093` removeElement ## 📝 Instructions: diff --git a/exercises/089-removeElement/app.js b/exercises/093-removeElement/app.js similarity index 100% rename from exercises/089-removeElement/app.js rename to exercises/093-removeElement/app.js diff --git a/exercises/089-removeElement/solution.hide.js b/exercises/093-removeElement/solution.hide.js similarity index 100% rename from exercises/089-removeElement/solution.hide.js rename to exercises/093-removeElement/solution.hide.js diff --git a/exercises/089-removeElement/test.js b/exercises/093-removeElement/test.js similarity index 100% rename from exercises/089-removeElement/test.js rename to exercises/093-removeElement/test.js diff --git a/exercises/090-filterOddLengthWords/README.es.md b/exercises/094-filterOddLengthWords/README.es.md similarity index 94% rename from exercises/090-filterOddLengthWords/README.es.md rename to exercises/094-filterOddLengthWords/README.es.md index 7e70b6913..c207ab2a9 100644 --- a/exercises/090-filterOddLengthWords/README.es.md +++ b/exercises/094-filterOddLengthWords/README.es.md @@ -1,4 +1,4 @@ -# `090` filterOddLengthWords +# `094` filterOddLengthWords ## 📝 Instrucciones: diff --git a/exercises/090-filterOddLengthWords/README.md b/exercises/094-filterOddLengthWords/README.md similarity index 94% rename from exercises/090-filterOddLengthWords/README.md rename to exercises/094-filterOddLengthWords/README.md index 2f6165001..af4aaca0a 100644 --- a/exercises/090-filterOddLengthWords/README.md +++ b/exercises/094-filterOddLengthWords/README.md @@ -1,4 +1,4 @@ -# `090` filterOddLengthWords +# `094` filterOddLengthWords ## 📝 Instructions: diff --git a/exercises/090-filterOddLengthWords/app.js b/exercises/094-filterOddLengthWords/app.js similarity index 100% rename from exercises/090-filterOddLengthWords/app.js rename to exercises/094-filterOddLengthWords/app.js diff --git a/exercises/090-filterOddLengthWords/solution.hide.js b/exercises/094-filterOddLengthWords/solution.hide.js similarity index 100% rename from exercises/090-filterOddLengthWords/solution.hide.js rename to exercises/094-filterOddLengthWords/solution.hide.js diff --git a/exercises/090-filterOddLengthWords/test.js b/exercises/094-filterOddLengthWords/test.js similarity index 100% rename from exercises/090-filterOddLengthWords/test.js rename to exercises/094-filterOddLengthWords/test.js diff --git a/exercises/091-filterEvenLengthWords/README.es.md b/exercises/095-filterEvenLengthWords/README.es.md similarity index 92% rename from exercises/091-filterEvenLengthWords/README.es.md rename to exercises/095-filterEvenLengthWords/README.es.md index dfc2b7ef7..cf9c5b42e 100644 --- a/exercises/091-filterEvenLengthWords/README.es.md +++ b/exercises/095-filterEvenLengthWords/README.es.md @@ -1,4 +1,4 @@ -# `091` filterEvenLengthWords +# `095` filterEvenLengthWords ## 📝 Instrucciones: diff --git a/exercises/091-filterEvenLengthWords/README.md b/exercises/095-filterEvenLengthWords/README.md similarity index 92% rename from exercises/091-filterEvenLengthWords/README.md rename to exercises/095-filterEvenLengthWords/README.md index 837333de6..7ae599be6 100644 --- a/exercises/091-filterEvenLengthWords/README.md +++ b/exercises/095-filterEvenLengthWords/README.md @@ -1,4 +1,4 @@ -# `091` filterEvenLengthWords +# `095` filterEvenLengthWords ## 📝 Instructions: diff --git a/exercises/091-filterEvenLengthWords/app.js b/exercises/095-filterEvenLengthWords/app.js similarity index 100% rename from exercises/091-filterEvenLengthWords/app.js rename to exercises/095-filterEvenLengthWords/app.js diff --git a/exercises/091-filterEvenLengthWords/solution.hide.js b/exercises/095-filterEvenLengthWords/solution.hide.js similarity index 100% rename from exercises/091-filterEvenLengthWords/solution.hide.js rename to exercises/095-filterEvenLengthWords/solution.hide.js diff --git a/exercises/091-filterEvenLengthWords/test.js b/exercises/095-filterEvenLengthWords/test.js similarity index 100% rename from exercises/091-filterEvenLengthWords/test.js rename to exercises/095-filterEvenLengthWords/test.js diff --git a/exercises/092-getFirstElementOfProperty/README.es.md b/exercises/096-getFirstElementOfProperty/README.es.md similarity index 94% rename from exercises/092-getFirstElementOfProperty/README.es.md rename to exercises/096-getFirstElementOfProperty/README.es.md index 263c06c23..abfde7ce4 100644 --- a/exercises/092-getFirstElementOfProperty/README.es.md +++ b/exercises/096-getFirstElementOfProperty/README.es.md @@ -1,4 +1,4 @@ -# `092` getFirstElementOfProperty +# `096` getFirstElementOfProperty ## 📝 Instrucciones: diff --git a/exercises/092-getFirstElementOfProperty/README.md b/exercises/096-getFirstElementOfProperty/README.md similarity index 94% rename from exercises/092-getFirstElementOfProperty/README.md rename to exercises/096-getFirstElementOfProperty/README.md index bc22d7aac..c2ed1e805 100644 --- a/exercises/092-getFirstElementOfProperty/README.md +++ b/exercises/096-getFirstElementOfProperty/README.md @@ -1,4 +1,4 @@ -# `092` getFirstElementOfProperty +# `096` getFirstElementOfProperty ## 📝 Instructions: diff --git a/exercises/092-getFirstElementOfProperty/app.js b/exercises/096-getFirstElementOfProperty/app.js similarity index 100% rename from exercises/092-getFirstElementOfProperty/app.js rename to exercises/096-getFirstElementOfProperty/app.js diff --git a/exercises/092-getFirstElementOfProperty/solution.hide.js b/exercises/096-getFirstElementOfProperty/solution.hide.js similarity index 100% rename from exercises/092-getFirstElementOfProperty/solution.hide.js rename to exercises/096-getFirstElementOfProperty/solution.hide.js diff --git a/exercises/092-getFirstElementOfProperty/test.js b/exercises/096-getFirstElementOfProperty/test.js similarity index 100% rename from exercises/092-getFirstElementOfProperty/test.js rename to exercises/096-getFirstElementOfProperty/test.js diff --git a/exercises/093-getNthElementOfProperty/README.es.md b/exercises/097-getNthElementOfProperty/README.es.md similarity index 95% rename from exercises/093-getNthElementOfProperty/README.es.md rename to exercises/097-getNthElementOfProperty/README.es.md index 963653fb3..8391338e7 100644 --- a/exercises/093-getNthElementOfProperty/README.es.md +++ b/exercises/097-getNthElementOfProperty/README.es.md @@ -1,4 +1,4 @@ -# `093` getNthElementOfProperty +# `097` getNthElementOfProperty ## 📝 Instrucciones: diff --git a/exercises/093-getNthElementOfProperty/README.md b/exercises/097-getNthElementOfProperty/README.md similarity index 95% rename from exercises/093-getNthElementOfProperty/README.md rename to exercises/097-getNthElementOfProperty/README.md index bfd596c05..e738994e4 100644 --- a/exercises/093-getNthElementOfProperty/README.md +++ b/exercises/097-getNthElementOfProperty/README.md @@ -1,4 +1,4 @@ -# `093` getNthElementOfProperty +# `097` getNthElementOfProperty ## 📝 Instructions: diff --git a/exercises/093-getNthElementOfProperty/app.js b/exercises/097-getNthElementOfProperty/app.js similarity index 100% rename from exercises/093-getNthElementOfProperty/app.js rename to exercises/097-getNthElementOfProperty/app.js diff --git a/exercises/093-getNthElementOfProperty/solution.hide.js b/exercises/097-getNthElementOfProperty/solution.hide.js similarity index 100% rename from exercises/093-getNthElementOfProperty/solution.hide.js rename to exercises/097-getNthElementOfProperty/solution.hide.js diff --git a/exercises/093-getNthElementOfProperty/test.js b/exercises/097-getNthElementOfProperty/test.js similarity index 100% rename from exercises/093-getNthElementOfProperty/test.js rename to exercises/097-getNthElementOfProperty/test.js diff --git a/exercises/094-getLastElementOfProperty/README.es.md b/exercises/098-getLastElementOfProperty/README.es.md similarity index 94% rename from exercises/094-getLastElementOfProperty/README.es.md rename to exercises/098-getLastElementOfProperty/README.es.md index 320b0a59b..80356d5cf 100644 --- a/exercises/094-getLastElementOfProperty/README.es.md +++ b/exercises/098-getLastElementOfProperty/README.es.md @@ -1,4 +1,4 @@ -# `094` getLastElementOfProperty +# `098` getLastElementOfProperty ## 📝 Instrucciones: diff --git a/exercises/094-getLastElementOfProperty/README.md b/exercises/098-getLastElementOfProperty/README.md similarity index 94% rename from exercises/094-getLastElementOfProperty/README.md rename to exercises/098-getLastElementOfProperty/README.md index 97bd67f4c..cfe181fc7 100644 --- a/exercises/094-getLastElementOfProperty/README.md +++ b/exercises/098-getLastElementOfProperty/README.md @@ -1,4 +1,4 @@ -# `094` getLastElementOfProperty +# `098` getLastElementOfProperty ## 📝 Instructions: diff --git a/exercises/094-getLastElementOfProperty/app.js b/exercises/098-getLastElementOfProperty/app.js similarity index 100% rename from exercises/094-getLastElementOfProperty/app.js rename to exercises/098-getLastElementOfProperty/app.js diff --git a/exercises/094-getLastElementOfProperty/solution.hide.js b/exercises/098-getLastElementOfProperty/solution.hide.js similarity index 100% rename from exercises/094-getLastElementOfProperty/solution.hide.js rename to exercises/098-getLastElementOfProperty/solution.hide.js diff --git a/exercises/094-getLastElementOfProperty/test.js b/exercises/098-getLastElementOfProperty/test.js similarity index 100% rename from exercises/094-getLastElementOfProperty/test.js rename to exercises/098-getLastElementOfProperty/test.js diff --git a/exercises/095-getElementsThatEqual10AtProperty/README.es.md b/exercises/099-getElementsThatEqual10AtProperty/README.es.md similarity index 95% rename from exercises/095-getElementsThatEqual10AtProperty/README.es.md rename to exercises/099-getElementsThatEqual10AtProperty/README.es.md index 75b49b7ac..e837689dd 100644 --- a/exercises/095-getElementsThatEqual10AtProperty/README.es.md +++ b/exercises/099-getElementsThatEqual10AtProperty/README.es.md @@ -1,4 +1,4 @@ -# `095` getElementsThatEqual10AtProperty +# `099` getElementsThatEqual10AtProperty ## 📝 Instrucciones: diff --git a/exercises/095-getElementsThatEqual10AtProperty/README.md b/exercises/099-getElementsThatEqual10AtProperty/README.md similarity index 94% rename from exercises/095-getElementsThatEqual10AtProperty/README.md rename to exercises/099-getElementsThatEqual10AtProperty/README.md index 69b04245e..0e7a8fcf0 100644 --- a/exercises/095-getElementsThatEqual10AtProperty/README.md +++ b/exercises/099-getElementsThatEqual10AtProperty/README.md @@ -1,4 +1,4 @@ -# `095` getElementsThatEqual10AtProperty +# `099` getElementsThatEqual10AtProperty ## 📝 Instructions: diff --git a/exercises/095-getElementsThatEqual10AtProperty/app.js b/exercises/099-getElementsThatEqual10AtProperty/app.js similarity index 100% rename from exercises/095-getElementsThatEqual10AtProperty/app.js rename to exercises/099-getElementsThatEqual10AtProperty/app.js diff --git a/exercises/095-getElementsThatEqual10AtProperty/solution.hide.js b/exercises/099-getElementsThatEqual10AtProperty/solution.hide.js similarity index 100% rename from exercises/095-getElementsThatEqual10AtProperty/solution.hide.js rename to exercises/099-getElementsThatEqual10AtProperty/solution.hide.js diff --git a/exercises/095-getElementsThatEqual10AtProperty/test.js b/exercises/099-getElementsThatEqual10AtProperty/test.js similarity index 100% rename from exercises/095-getElementsThatEqual10AtProperty/test.js rename to exercises/099-getElementsThatEqual10AtProperty/test.js diff --git a/exercises/096-getElementsLessThanOneHundredAtProperty/README.es.md b/exercises/100-getElementsLessThanOneHundredAtProperty/README.es.md similarity index 95% rename from exercises/096-getElementsLessThanOneHundredAtProperty/README.es.md rename to exercises/100-getElementsLessThanOneHundredAtProperty/README.es.md index ec8d15a40..b8b298fc9 100644 --- a/exercises/096-getElementsLessThanOneHundredAtProperty/README.es.md +++ b/exercises/100-getElementsLessThanOneHundredAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `096` getElementsLessThan100AtProperty +# `100` getElementsLessThan100AtProperty ## 📝 Instrucciones: diff --git a/exercises/096-getElementsLessThanOneHundredAtProperty/README.md b/exercises/100-getElementsLessThanOneHundredAtProperty/README.md similarity index 94% rename from exercises/096-getElementsLessThanOneHundredAtProperty/README.md rename to exercises/100-getElementsLessThanOneHundredAtProperty/README.md index 562b5d842..1e69ee9ac 100644 --- a/exercises/096-getElementsLessThanOneHundredAtProperty/README.md +++ b/exercises/100-getElementsLessThanOneHundredAtProperty/README.md @@ -1,4 +1,4 @@ -# `096` getElementsLessThan100AtProperty +# `100` getElementsLessThan100AtProperty ## 📝 Instructions: diff --git a/exercises/096-getElementsLessThanOneHundredAtProperty/app.js b/exercises/100-getElementsLessThanOneHundredAtProperty/app.js similarity index 100% rename from exercises/096-getElementsLessThanOneHundredAtProperty/app.js rename to exercises/100-getElementsLessThanOneHundredAtProperty/app.js diff --git a/exercises/096-getElementsLessThanOneHundredAtProperty/solution.hide.js b/exercises/100-getElementsLessThanOneHundredAtProperty/solution.hide.js similarity index 100% rename from exercises/096-getElementsLessThanOneHundredAtProperty/solution.hide.js rename to exercises/100-getElementsLessThanOneHundredAtProperty/solution.hide.js diff --git a/exercises/096-getElementsLessThanOneHundredAtProperty/test.js b/exercises/100-getElementsLessThanOneHundredAtProperty/test.js similarity index 100% rename from exercises/096-getElementsLessThanOneHundredAtProperty/test.js rename to exercises/100-getElementsLessThanOneHundredAtProperty/test.js diff --git a/exercises/097-getElementsGreaterThanTenAtProperty/README.es.md b/exercises/101-getElementsGreaterThanTenAtProperty/README.es.md similarity index 94% rename from exercises/097-getElementsGreaterThanTenAtProperty/README.es.md rename to exercises/101-getElementsGreaterThanTenAtProperty/README.es.md index 61c0964f3..0b6704e57 100644 --- a/exercises/097-getElementsGreaterThanTenAtProperty/README.es.md +++ b/exercises/101-getElementsGreaterThanTenAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `097` getElementsGreaterThan10AtProperty +# `101` getElementsGreaterThan10AtProperty ## 📝 Instrucciones: diff --git a/exercises/097-getElementsGreaterThanTenAtProperty/README.md b/exercises/101-getElementsGreaterThanTenAtProperty/README.md similarity index 94% rename from exercises/097-getElementsGreaterThanTenAtProperty/README.md rename to exercises/101-getElementsGreaterThanTenAtProperty/README.md index cba67a44c..54f14f92c 100644 --- a/exercises/097-getElementsGreaterThanTenAtProperty/README.md +++ b/exercises/101-getElementsGreaterThanTenAtProperty/README.md @@ -1,4 +1,4 @@ -# `097` getElementsGreaterThan10AtProperty +# `101` getElementsGreaterThan10AtProperty ## 📝 Instructions: diff --git a/exercises/097-getElementsGreaterThanTenAtProperty/app.js b/exercises/101-getElementsGreaterThanTenAtProperty/app.js similarity index 100% rename from exercises/097-getElementsGreaterThanTenAtProperty/app.js rename to exercises/101-getElementsGreaterThanTenAtProperty/app.js diff --git a/exercises/097-getElementsGreaterThanTenAtProperty/solution.hide.js b/exercises/101-getElementsGreaterThanTenAtProperty/solution.hide.js similarity index 100% rename from exercises/097-getElementsGreaterThanTenAtProperty/solution.hide.js rename to exercises/101-getElementsGreaterThanTenAtProperty/solution.hide.js diff --git a/exercises/097-getElementsGreaterThanTenAtProperty/test.js b/exercises/101-getElementsGreaterThanTenAtProperty/test.js similarity index 100% rename from exercises/097-getElementsGreaterThanTenAtProperty/test.js rename to exercises/101-getElementsGreaterThanTenAtProperty/test.js diff --git a/exercises/098-getOddLengthWordsAtProperty/README.es.md b/exercises/102-getOddLengthWordsAtProperty/README.es.md similarity index 95% rename from exercises/098-getOddLengthWordsAtProperty/README.es.md rename to exercises/102-getOddLengthWordsAtProperty/README.es.md index 52cad84a8..908694f0f 100644 --- a/exercises/098-getOddLengthWordsAtProperty/README.es.md +++ b/exercises/102-getOddLengthWordsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `098` getOddLengthWordsAtProperty +# `102` getOddLengthWordsAtProperty ## 📝 Instrucciones: diff --git a/exercises/098-getOddLengthWordsAtProperty/README.md b/exercises/102-getOddLengthWordsAtProperty/README.md similarity index 95% rename from exercises/098-getOddLengthWordsAtProperty/README.md rename to exercises/102-getOddLengthWordsAtProperty/README.md index f002c8339..2288ba3c2 100644 --- a/exercises/098-getOddLengthWordsAtProperty/README.md +++ b/exercises/102-getOddLengthWordsAtProperty/README.md @@ -1,4 +1,4 @@ -# `098` getOddLengthWordsAtProperty +# `102` getOddLengthWordsAtProperty ## 📝 Instructions: diff --git a/exercises/098-getOddLengthWordsAtProperty/app.js b/exercises/102-getOddLengthWordsAtProperty/app.js similarity index 100% rename from exercises/098-getOddLengthWordsAtProperty/app.js rename to exercises/102-getOddLengthWordsAtProperty/app.js diff --git a/exercises/098-getOddLengthWordsAtProperty/solution.hide.js b/exercises/102-getOddLengthWordsAtProperty/solution.hide.js similarity index 100% rename from exercises/098-getOddLengthWordsAtProperty/solution.hide.js rename to exercises/102-getOddLengthWordsAtProperty/solution.hide.js diff --git a/exercises/098-getOddLengthWordsAtProperty/test.js b/exercises/102-getOddLengthWordsAtProperty/test.js similarity index 100% rename from exercises/098-getOddLengthWordsAtProperty/test.js rename to exercises/102-getOddLengthWordsAtProperty/test.js diff --git a/exercises/099-getAverageOfElementsAtProperty/README.es.md b/exercises/103-getAverageOfElementsAtProperty/README.es.md similarity index 94% rename from exercises/099-getAverageOfElementsAtProperty/README.es.md rename to exercises/103-getAverageOfElementsAtProperty/README.es.md index 8813860ca..402a08d52 100644 --- a/exercises/099-getAverageOfElementsAtProperty/README.es.md +++ b/exercises/103-getAverageOfElementsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `099` getAverageOfElementsAtProperty +# `103` getAverageOfElementsAtProperty ## 📝 Instrucciones: diff --git a/exercises/099-getAverageOfElementsAtProperty/README.md b/exercises/103-getAverageOfElementsAtProperty/README.md similarity index 93% rename from exercises/099-getAverageOfElementsAtProperty/README.md rename to exercises/103-getAverageOfElementsAtProperty/README.md index 33db171cb..2f01b1fbc 100644 --- a/exercises/099-getAverageOfElementsAtProperty/README.md +++ b/exercises/103-getAverageOfElementsAtProperty/README.md @@ -1,4 +1,4 @@ -# `099` getAverageOfElementsAtProperty +# `103` getAverageOfElementsAtProperty ## 📝 Instructions: diff --git a/exercises/099-getAverageOfElementsAtProperty/app.js b/exercises/103-getAverageOfElementsAtProperty/app.js similarity index 100% rename from exercises/099-getAverageOfElementsAtProperty/app.js rename to exercises/103-getAverageOfElementsAtProperty/app.js diff --git a/exercises/099-getAverageOfElementsAtProperty/solution.hide.js b/exercises/103-getAverageOfElementsAtProperty/solution.hide.js similarity index 100% rename from exercises/099-getAverageOfElementsAtProperty/solution.hide.js rename to exercises/103-getAverageOfElementsAtProperty/solution.hide.js diff --git a/exercises/099-getAverageOfElementsAtProperty/test.js b/exercises/103-getAverageOfElementsAtProperty/test.js similarity index 100% rename from exercises/099-getAverageOfElementsAtProperty/test.js rename to exercises/103-getAverageOfElementsAtProperty/test.js diff --git a/exercises/100-getEvenLengthWordsAtProperty/README.es.md b/exercises/104-getEvenLengthWordsAtProperty/README.es.md similarity index 95% rename from exercises/100-getEvenLengthWordsAtProperty/README.es.md rename to exercises/104-getEvenLengthWordsAtProperty/README.es.md index 1e3b972a3..0d4ee5363 100644 --- a/exercises/100-getEvenLengthWordsAtProperty/README.es.md +++ b/exercises/104-getEvenLengthWordsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `100` getEvenLengthWordsAtProperty +# `104` getEvenLengthWordsAtProperty ## 📝 Instrucciones: diff --git a/exercises/100-getEvenLengthWordsAtProperty/README.md b/exercises/104-getEvenLengthWordsAtProperty/README.md similarity index 95% rename from exercises/100-getEvenLengthWordsAtProperty/README.md rename to exercises/104-getEvenLengthWordsAtProperty/README.md index 4657eeb11..f56e79e95 100644 --- a/exercises/100-getEvenLengthWordsAtProperty/README.md +++ b/exercises/104-getEvenLengthWordsAtProperty/README.md @@ -1,4 +1,4 @@ -# `100` getEvenLengthWordsAtProperty +# `104` getEvenLengthWordsAtProperty ## 📝 Instructions: diff --git a/exercises/100-getEvenLengthWordsAtProperty/app.js b/exercises/104-getEvenLengthWordsAtProperty/app.js similarity index 100% rename from exercises/100-getEvenLengthWordsAtProperty/app.js rename to exercises/104-getEvenLengthWordsAtProperty/app.js diff --git a/exercises/100-getEvenLengthWordsAtProperty/solution.hide.js b/exercises/104-getEvenLengthWordsAtProperty/solution.hide.js similarity index 100% rename from exercises/100-getEvenLengthWordsAtProperty/solution.hide.js rename to exercises/104-getEvenLengthWordsAtProperty/solution.hide.js diff --git a/exercises/100-getEvenLengthWordsAtProperty/test.js b/exercises/104-getEvenLengthWordsAtProperty/test.js similarity index 100% rename from exercises/100-getEvenLengthWordsAtProperty/test.js rename to exercises/104-getEvenLengthWordsAtProperty/test.js diff --git a/exercises/101-getOddElementsAtProperty/README.es.md b/exercises/105-getOddElementsAtProperty/README.es.md similarity index 95% rename from exercises/101-getOddElementsAtProperty/README.es.md rename to exercises/105-getOddElementsAtProperty/README.es.md index 79bc4f3dc..707ba074e 100644 --- a/exercises/101-getOddElementsAtProperty/README.es.md +++ b/exercises/105-getOddElementsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `101` getOddElementsAtProperty +# `105` getOddElementsAtProperty ## 📝 Instrucciones: diff --git a/exercises/101-getOddElementsAtProperty/README.md b/exercises/105-getOddElementsAtProperty/README.md similarity index 95% rename from exercises/101-getOddElementsAtProperty/README.md rename to exercises/105-getOddElementsAtProperty/README.md index 0477ff890..3be38ea9f 100644 --- a/exercises/101-getOddElementsAtProperty/README.md +++ b/exercises/105-getOddElementsAtProperty/README.md @@ -1,4 +1,4 @@ -# `101` getOddElementsAtProperty +# `105` getOddElementsAtProperty ## 📝 Instructions: diff --git a/exercises/101-getOddElementsAtProperty/app.js b/exercises/105-getOddElementsAtProperty/app.js similarity index 100% rename from exercises/101-getOddElementsAtProperty/app.js rename to exercises/105-getOddElementsAtProperty/app.js diff --git a/exercises/101-getOddElementsAtProperty/solution.hide.js b/exercises/105-getOddElementsAtProperty/solution.hide.js similarity index 100% rename from exercises/101-getOddElementsAtProperty/solution.hide.js rename to exercises/105-getOddElementsAtProperty/solution.hide.js diff --git a/exercises/101-getOddElementsAtProperty/test.js b/exercises/105-getOddElementsAtProperty/test.js similarity index 100% rename from exercises/101-getOddElementsAtProperty/test.js rename to exercises/105-getOddElementsAtProperty/test.js diff --git a/exercises/102-getEvenElementsAtProperty/README.es.md b/exercises/106-getEvenElementsAtProperty/README.es.md similarity index 95% rename from exercises/102-getEvenElementsAtProperty/README.es.md rename to exercises/106-getEvenElementsAtProperty/README.es.md index f3e611760..19c47c77a 100644 --- a/exercises/102-getEvenElementsAtProperty/README.es.md +++ b/exercises/106-getEvenElementsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `102` getEvenElementsAtProperty +# `106` getEvenElementsAtProperty ## 📝 Instrucciones: diff --git a/exercises/102-getEvenElementsAtProperty/README.md b/exercises/106-getEvenElementsAtProperty/README.md similarity index 95% rename from exercises/102-getEvenElementsAtProperty/README.md rename to exercises/106-getEvenElementsAtProperty/README.md index 3181593e1..0ad9282cd 100644 --- a/exercises/102-getEvenElementsAtProperty/README.md +++ b/exercises/106-getEvenElementsAtProperty/README.md @@ -1,4 +1,4 @@ -# `102` getEvenElementsAtProperty +# `106` getEvenElementsAtProperty ## 📝 Instructions: diff --git a/exercises/102-getEvenElementsAtProperty/app.js b/exercises/106-getEvenElementsAtProperty/app.js similarity index 100% rename from exercises/102-getEvenElementsAtProperty/app.js rename to exercises/106-getEvenElementsAtProperty/app.js diff --git a/exercises/102-getEvenElementsAtProperty/solution.hide.js b/exercises/106-getEvenElementsAtProperty/solution.hide.js similarity index 100% rename from exercises/102-getEvenElementsAtProperty/solution.hide.js rename to exercises/106-getEvenElementsAtProperty/solution.hide.js diff --git a/exercises/102-getEvenElementsAtProperty/test.js b/exercises/106-getEvenElementsAtProperty/test.js similarity index 100% rename from exercises/102-getEvenElementsAtProperty/test.js rename to exercises/106-getEvenElementsAtProperty/test.js diff --git a/exercises/103-getSquaredElementsAtProperty/README.es.md b/exercises/107-getSquaredElementsAtProperty/README.es.md similarity index 95% rename from exercises/103-getSquaredElementsAtProperty/README.es.md rename to exercises/107-getSquaredElementsAtProperty/README.es.md index f8bdb191d..62c6ccb57 100644 --- a/exercises/103-getSquaredElementsAtProperty/README.es.md +++ b/exercises/107-getSquaredElementsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `103` getSquaredElementsAtProperty +# `107` getSquaredElementsAtProperty ## 📝 Instrucciones: diff --git a/exercises/103-getSquaredElementsAtProperty/README.md b/exercises/107-getSquaredElementsAtProperty/README.md similarity index 95% rename from exercises/103-getSquaredElementsAtProperty/README.md rename to exercises/107-getSquaredElementsAtProperty/README.md index 5c17f922a..f68737bd6 100644 --- a/exercises/103-getSquaredElementsAtProperty/README.md +++ b/exercises/107-getSquaredElementsAtProperty/README.md @@ -1,4 +1,4 @@ -# `103` getSquaredElementsAtProperty +# `107` getSquaredElementsAtProperty ## 📝 Instructions: diff --git a/exercises/103-getSquaredElementsAtProperty/app.js b/exercises/107-getSquaredElementsAtProperty/app.js similarity index 100% rename from exercises/103-getSquaredElementsAtProperty/app.js rename to exercises/107-getSquaredElementsAtProperty/app.js diff --git a/exercises/103-getSquaredElementsAtProperty/solution.hide.js b/exercises/107-getSquaredElementsAtProperty/solution.hide.js similarity index 100% rename from exercises/103-getSquaredElementsAtProperty/solution.hide.js rename to exercises/107-getSquaredElementsAtProperty/solution.hide.js diff --git a/exercises/103-getSquaredElementsAtProperty/test.js b/exercises/107-getSquaredElementsAtProperty/test.js similarity index 100% rename from exercises/103-getSquaredElementsAtProperty/test.js rename to exercises/107-getSquaredElementsAtProperty/test.js diff --git a/exercises/104-getSmallestElementAtProperty/README.es.md b/exercises/108-getSmallestElementAtProperty/README.es.md similarity index 94% rename from exercises/104-getSmallestElementAtProperty/README.es.md rename to exercises/108-getSmallestElementAtProperty/README.es.md index 9739fa4a8..a967a2422 100644 --- a/exercises/104-getSmallestElementAtProperty/README.es.md +++ b/exercises/108-getSmallestElementAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `104` getSmallestElementAtProperty +# `108` getSmallestElementAtProperty ## 📝 Instrucciones: diff --git a/exercises/104-getSmallestElementAtProperty/README.md b/exercises/108-getSmallestElementAtProperty/README.md similarity index 94% rename from exercises/104-getSmallestElementAtProperty/README.md rename to exercises/108-getSmallestElementAtProperty/README.md index f46f61f71..d66fde65d 100644 --- a/exercises/104-getSmallestElementAtProperty/README.md +++ b/exercises/108-getSmallestElementAtProperty/README.md @@ -1,4 +1,4 @@ -# `104` getSmallestElementAtProperty +# `108` getSmallestElementAtProperty ## 📝 Instructions: diff --git a/exercises/104-getSmallestElementAtProperty/app.js b/exercises/108-getSmallestElementAtProperty/app.js similarity index 100% rename from exercises/104-getSmallestElementAtProperty/app.js rename to exercises/108-getSmallestElementAtProperty/app.js diff --git a/exercises/104-getSmallestElementAtProperty/solution.hide.js b/exercises/108-getSmallestElementAtProperty/solution.hide.js similarity index 100% rename from exercises/104-getSmallestElementAtProperty/solution.hide.js rename to exercises/108-getSmallestElementAtProperty/solution.hide.js diff --git a/exercises/104-getSmallestElementAtProperty/test.js b/exercises/108-getSmallestElementAtProperty/test.js similarity index 100% rename from exercises/104-getSmallestElementAtProperty/test.js rename to exercises/108-getSmallestElementAtProperty/test.js diff --git a/exercises/105-getLargestElementAtProperty/README.es.md b/exercises/109-getLargestElementAtProperty/README.es.md similarity index 94% rename from exercises/105-getLargestElementAtProperty/README.es.md rename to exercises/109-getLargestElementAtProperty/README.es.md index 26093c843..e1d3dbba1 100644 --- a/exercises/105-getLargestElementAtProperty/README.es.md +++ b/exercises/109-getLargestElementAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `105` getLargestElementAtProperty +# `109` getLargestElementAtProperty ## 📝 Instrucciones: diff --git a/exercises/105-getLargestElementAtProperty/README.md b/exercises/109-getLargestElementAtProperty/README.md similarity index 94% rename from exercises/105-getLargestElementAtProperty/README.md rename to exercises/109-getLargestElementAtProperty/README.md index 959aaa213..89ada34c5 100644 --- a/exercises/105-getLargestElementAtProperty/README.md +++ b/exercises/109-getLargestElementAtProperty/README.md @@ -1,4 +1,4 @@ -# `105` getLargestElementAtProperty +# `109` getLargestElementAtProperty ## 📝 Instructions: diff --git a/exercises/105-getLargestElementAtProperty/app.js b/exercises/109-getLargestElementAtProperty/app.js similarity index 100% rename from exercises/105-getLargestElementAtProperty/app.js rename to exercises/109-getLargestElementAtProperty/app.js diff --git a/exercises/105-getLargestElementAtProperty/solution.hide.js b/exercises/109-getLargestElementAtProperty/solution.hide.js similarity index 100% rename from exercises/105-getLargestElementAtProperty/solution.hide.js rename to exercises/109-getLargestElementAtProperty/solution.hide.js diff --git a/exercises/105-getLargestElementAtProperty/test.js b/exercises/109-getLargestElementAtProperty/test.js similarity index 100% rename from exercises/105-getLargestElementAtProperty/test.js rename to exercises/109-getLargestElementAtProperty/test.js diff --git a/exercises/106-getAllButLastElementOfProperty/README.es.md b/exercises/110-getAllButLastElementOfProperty/README.es.md similarity index 94% rename from exercises/106-getAllButLastElementOfProperty/README.es.md rename to exercises/110-getAllButLastElementOfProperty/README.es.md index 5836bda16..a4c179a4b 100644 --- a/exercises/106-getAllButLastElementOfProperty/README.es.md +++ b/exercises/110-getAllButLastElementOfProperty/README.es.md @@ -1,4 +1,4 @@ -# `106` getAllButLastElementOfProperty +# `110` getAllButLastElementOfProperty ## 📝 Instrucciones: diff --git a/exercises/106-getAllButLastElementOfProperty/README.md b/exercises/110-getAllButLastElementOfProperty/README.md similarity index 94% rename from exercises/106-getAllButLastElementOfProperty/README.md rename to exercises/110-getAllButLastElementOfProperty/README.md index 340163260..f4161d8b4 100644 --- a/exercises/106-getAllButLastElementOfProperty/README.md +++ b/exercises/110-getAllButLastElementOfProperty/README.md @@ -1,4 +1,4 @@ -# `106` getAllButLastElementOfProperty +# `110` getAllButLastElementOfProperty ## 📝 Instructions: diff --git a/exercises/106-getAllButLastElementOfProperty/app.js b/exercises/110-getAllButLastElementOfProperty/app.js similarity index 100% rename from exercises/106-getAllButLastElementOfProperty/app.js rename to exercises/110-getAllButLastElementOfProperty/app.js diff --git a/exercises/106-getAllButLastElementOfProperty/solution.hide.js b/exercises/110-getAllButLastElementOfProperty/solution.hide.js similarity index 100% rename from exercises/106-getAllButLastElementOfProperty/solution.hide.js rename to exercises/110-getAllButLastElementOfProperty/solution.hide.js diff --git a/exercises/106-getAllButLastElementOfProperty/test.js b/exercises/110-getAllButLastElementOfProperty/test.js similarity index 100% rename from exercises/106-getAllButLastElementOfProperty/test.js rename to exercises/110-getAllButLastElementOfProperty/test.js diff --git a/exercises/107-getElementOfArrayProperty/README.es.md b/exercises/111-getElementOfArrayProperty/README.es.md similarity index 95% rename from exercises/107-getElementOfArrayProperty/README.es.md rename to exercises/111-getElementOfArrayProperty/README.es.md index 3a551c12c..6bcb44156 100644 --- a/exercises/107-getElementOfArrayProperty/README.es.md +++ b/exercises/111-getElementOfArrayProperty/README.es.md @@ -1,4 +1,4 @@ -# `107` getElementOfArrayProperty +# `111` getElementOfArrayProperty ## 📝 Instrucciones: diff --git a/exercises/107-getElementOfArrayProperty/README.md b/exercises/111-getElementOfArrayProperty/README.md similarity index 95% rename from exercises/107-getElementOfArrayProperty/README.md rename to exercises/111-getElementOfArrayProperty/README.md index 20b74b138..a78f9b6e0 100644 --- a/exercises/107-getElementOfArrayProperty/README.md +++ b/exercises/111-getElementOfArrayProperty/README.md @@ -1,4 +1,4 @@ -# `107` getElementOfArrayProperty +# `111` getElementOfArrayProperty ## 📝 Instructions: diff --git a/exercises/107-getElementOfArrayProperty/app.js b/exercises/111-getElementOfArrayProperty/app.js similarity index 100% rename from exercises/107-getElementOfArrayProperty/app.js rename to exercises/111-getElementOfArrayProperty/app.js diff --git a/exercises/107-getElementOfArrayProperty/solution.hide.js b/exercises/111-getElementOfArrayProperty/solution.hide.js similarity index 100% rename from exercises/107-getElementOfArrayProperty/solution.hide.js rename to exercises/111-getElementOfArrayProperty/solution.hide.js diff --git a/exercises/107-getElementOfArrayProperty/test.js b/exercises/111-getElementOfArrayProperty/test.js similarity index 100% rename from exercises/107-getElementOfArrayProperty/test.js rename to exercises/111-getElementOfArrayProperty/test.js diff --git a/exercises/108-getProductOfAllElementsAtProperty/README.es.md b/exercises/112-getProductOfAllElementsAtProperty/README.es.md similarity index 93% rename from exercises/108-getProductOfAllElementsAtProperty/README.es.md rename to exercises/112-getProductOfAllElementsAtProperty/README.es.md index 8338f13b9..f8903415b 100644 --- a/exercises/108-getProductOfAllElementsAtProperty/README.es.md +++ b/exercises/112-getProductOfAllElementsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `108` getProductOfAllElementsAtProperty +# `112` getProductOfAllElementsAtProperty ## 📝 Instrucciones: diff --git a/exercises/108-getProductOfAllElementsAtProperty/README.md b/exercises/112-getProductOfAllElementsAtProperty/README.md similarity index 93% rename from exercises/108-getProductOfAllElementsAtProperty/README.md rename to exercises/112-getProductOfAllElementsAtProperty/README.md index 2c3be4355..23bcdd8a7 100644 --- a/exercises/108-getProductOfAllElementsAtProperty/README.md +++ b/exercises/112-getProductOfAllElementsAtProperty/README.md @@ -1,4 +1,4 @@ -# `108` getProductOfAllElementsAtProperty +# `112` getProductOfAllElementsAtProperty ## 📝 Instructions: diff --git a/exercises/108-getProductOfAllElementsAtProperty/app.js b/exercises/112-getProductOfAllElementsAtProperty/app.js similarity index 100% rename from exercises/108-getProductOfAllElementsAtProperty/app.js rename to exercises/112-getProductOfAllElementsAtProperty/app.js diff --git a/exercises/108-getProductOfAllElementsAtProperty/solution.hide.js b/exercises/112-getProductOfAllElementsAtProperty/solution.hide.js similarity index 100% rename from exercises/108-getProductOfAllElementsAtProperty/solution.hide.js rename to exercises/112-getProductOfAllElementsAtProperty/solution.hide.js diff --git a/exercises/108-getProductOfAllElementsAtProperty/test.js b/exercises/112-getProductOfAllElementsAtProperty/test.js similarity index 100% rename from exercises/108-getProductOfAllElementsAtProperty/test.js rename to exercises/112-getProductOfAllElementsAtProperty/test.js diff --git a/exercises/109-Select/README.es.md b/exercises/113-Select/README.es.md similarity index 97% rename from exercises/109-Select/README.es.md rename to exercises/113-Select/README.es.md index 49f63b44a..91e5e8936 100644 --- a/exercises/109-Select/README.es.md +++ b/exercises/113-Select/README.es.md @@ -1,4 +1,4 @@ -# `109` select +# `113` select ## 📝 Instrucciones: diff --git a/exercises/109-Select/README.md b/exercises/113-Select/README.md similarity index 97% rename from exercises/109-Select/README.md rename to exercises/113-Select/README.md index 0f0dcf96f..df5b9bb14 100644 --- a/exercises/109-Select/README.md +++ b/exercises/113-Select/README.md @@ -1,4 +1,4 @@ -# `109` select +# `113` select ## 📝 Instructions: diff --git a/exercises/109-Select/app.js b/exercises/113-Select/app.js similarity index 100% rename from exercises/109-Select/app.js rename to exercises/113-Select/app.js diff --git a/exercises/109-Select/solution.hide.js b/exercises/113-Select/solution.hide.js similarity index 100% rename from exercises/109-Select/solution.hide.js rename to exercises/113-Select/solution.hide.js diff --git a/exercises/109-Select/test.js b/exercises/113-Select/test.js similarity index 100% rename from exercises/109-Select/test.js rename to exercises/113-Select/test.js diff --git a/exercises/110-getSumOfAllElementsAtProperty/README.es.md b/exercises/114-getSumOfAllElementsAtProperty/README.es.md similarity index 93% rename from exercises/110-getSumOfAllElementsAtProperty/README.es.md rename to exercises/114-getSumOfAllElementsAtProperty/README.es.md index 3db26a221..2072fad18 100644 --- a/exercises/110-getSumOfAllElementsAtProperty/README.es.md +++ b/exercises/114-getSumOfAllElementsAtProperty/README.es.md @@ -1,4 +1,4 @@ -# `110` getSumOfAllElementsAtProperty +# `114` getSumOfAllElementsAtProperty ## 📝 Instrucciones: diff --git a/exercises/110-getSumOfAllElementsAtProperty/README.md b/exercises/114-getSumOfAllElementsAtProperty/README.md similarity index 93% rename from exercises/110-getSumOfAllElementsAtProperty/README.md rename to exercises/114-getSumOfAllElementsAtProperty/README.md index 0b14ba6be..dfac3a735 100644 --- a/exercises/110-getSumOfAllElementsAtProperty/README.md +++ b/exercises/114-getSumOfAllElementsAtProperty/README.md @@ -1,4 +1,4 @@ -# `110` getSumOfAllElementsAtProperty +# `114` getSumOfAllElementsAtProperty ## 📝 Instructions: diff --git a/exercises/110-getSumOfAllElementsAtProperty/app.js b/exercises/114-getSumOfAllElementsAtProperty/app.js similarity index 100% rename from exercises/110-getSumOfAllElementsAtProperty/app.js rename to exercises/114-getSumOfAllElementsAtProperty/app.js diff --git a/exercises/110-getSumOfAllElementsAtProperty/solution.hide.js b/exercises/114-getSumOfAllElementsAtProperty/solution.hide.js similarity index 100% rename from exercises/110-getSumOfAllElementsAtProperty/solution.hide.js rename to exercises/114-getSumOfAllElementsAtProperty/solution.hide.js diff --git a/exercises/110-getSumOfAllElementsAtProperty/test.js b/exercises/114-getSumOfAllElementsAtProperty/test.js similarity index 100% rename from exercises/110-getSumOfAllElementsAtProperty/test.js rename to exercises/114-getSumOfAllElementsAtProperty/test.js diff --git a/exercises/111-countAllCharacters/README.es.md b/exercises/115-countAllCharacters/README.es.md similarity index 95% rename from exercises/111-countAllCharacters/README.es.md rename to exercises/115-countAllCharacters/README.es.md index e3d500bda..41d50c4d6 100644 --- a/exercises/111-countAllCharacters/README.es.md +++ b/exercises/115-countAllCharacters/README.es.md @@ -1,4 +1,4 @@ -# `111` countAllCharacters +# `115` countAllCharacters ## 📝 Instrucciones: diff --git a/exercises/111-countAllCharacters/README.md b/exercises/115-countAllCharacters/README.md similarity index 94% rename from exercises/111-countAllCharacters/README.md rename to exercises/115-countAllCharacters/README.md index 5908161c6..7aeea207f 100644 --- a/exercises/111-countAllCharacters/README.md +++ b/exercises/115-countAllCharacters/README.md @@ -1,4 +1,4 @@ -# `111` countAllCharacters +# `115` countAllCharacters ## 📝 Instructions: diff --git a/exercises/111-countAllCharacters/app.js b/exercises/115-countAllCharacters/app.js similarity index 100% rename from exercises/111-countAllCharacters/app.js rename to exercises/115-countAllCharacters/app.js diff --git a/exercises/111-countAllCharacters/solution.hide.js b/exercises/115-countAllCharacters/solution.hide.js similarity index 100% rename from exercises/111-countAllCharacters/solution.hide.js rename to exercises/115-countAllCharacters/solution.hide.js diff --git a/exercises/111-countAllCharacters/test.js b/exercises/115-countAllCharacters/test.js similarity index 100% rename from exercises/111-countAllCharacters/test.js rename to exercises/115-countAllCharacters/test.js diff --git a/exercises/112-getLengthOfLongestElement/README.es.md b/exercises/116-getLengthOfLongestElement/README.es.md similarity index 91% rename from exercises/112-getLengthOfLongestElement/README.es.md rename to exercises/116-getLengthOfLongestElement/README.es.md index e32d149ed..095b8014f 100644 --- a/exercises/112-getLengthOfLongestElement/README.es.md +++ b/exercises/116-getLengthOfLongestElement/README.es.md @@ -1,4 +1,4 @@ -# `112` getLengthOfLongestElement +# `116` getLengthOfLongestElement ## 📝 Instrucciones: diff --git a/exercises/112-getLengthOfLongestElement/README.md b/exercises/116-getLengthOfLongestElement/README.md similarity index 91% rename from exercises/112-getLengthOfLongestElement/README.md rename to exercises/116-getLengthOfLongestElement/README.md index eca9c6ce0..e10cea9b0 100644 --- a/exercises/112-getLengthOfLongestElement/README.md +++ b/exercises/116-getLengthOfLongestElement/README.md @@ -1,4 +1,4 @@ -# `112` getLengthOfLongestElement +# `116` getLengthOfLongestElement ## 📝 Instructions: diff --git a/exercises/112-getLengthOfLongestElement/app.js b/exercises/116-getLengthOfLongestElement/app.js similarity index 100% rename from exercises/112-getLengthOfLongestElement/app.js rename to exercises/116-getLengthOfLongestElement/app.js diff --git a/exercises/112-getLengthOfLongestElement/solution.hide.js b/exercises/116-getLengthOfLongestElement/solution.hide.js similarity index 100% rename from exercises/112-getLengthOfLongestElement/solution.hide.js rename to exercises/116-getLengthOfLongestElement/solution.hide.js diff --git a/exercises/112-getLengthOfLongestElement/test.js b/exercises/116-getLengthOfLongestElement/test.js similarity index 100% rename from exercises/112-getLengthOfLongestElement/test.js rename to exercises/116-getLengthOfLongestElement/test.js diff --git a/exercises/113-squareElements/README.es.md b/exercises/117-squareElements/README.es.md similarity index 93% rename from exercises/113-squareElements/README.es.md rename to exercises/117-squareElements/README.es.md index f515e7adf..81b14b4fc 100644 --- a/exercises/113-squareElements/README.es.md +++ b/exercises/117-squareElements/README.es.md @@ -1,4 +1,4 @@ -# `113` squareElements +# `117` squareElements ## 📝 Instrucciones: diff --git a/exercises/113-squareElements/README.md b/exercises/117-squareElements/README.md similarity index 93% rename from exercises/113-squareElements/README.md rename to exercises/117-squareElements/README.md index c48f4790d..b7737b225 100644 --- a/exercises/113-squareElements/README.md +++ b/exercises/117-squareElements/README.md @@ -1,4 +1,4 @@ -# `113` squareElements +# `117` squareElements ## 📝 Instructions: diff --git a/exercises/113-squareElements/app.js b/exercises/117-squareElements/app.js similarity index 100% rename from exercises/113-squareElements/app.js rename to exercises/117-squareElements/app.js diff --git a/exercises/113-squareElements/solution.hide.js b/exercises/117-squareElements/solution.hide.js similarity index 100% rename from exercises/113-squareElements/solution.hide.js rename to exercises/117-squareElements/solution.hide.js diff --git a/exercises/113-squareElements/test.js b/exercises/117-squareElements/test.js similarity index 100% rename from exercises/113-squareElements/test.js rename to exercises/117-squareElements/test.js diff --git a/exercises/114-filterOddElements/README.es.md b/exercises/118-filterOddElements/README.es.md similarity index 92% rename from exercises/114-filterOddElements/README.es.md rename to exercises/118-filterOddElements/README.es.md index 7cc8dc342..b307b6552 100644 --- a/exercises/114-filterOddElements/README.es.md +++ b/exercises/118-filterOddElements/README.es.md @@ -1,4 +1,4 @@ -# `114` filterOddElements +# `118` filterOddElements ## 📝 Instrucciones: diff --git a/exercises/114-filterOddElements/README.md b/exercises/118-filterOddElements/README.md similarity index 92% rename from exercises/114-filterOddElements/README.md rename to exercises/118-filterOddElements/README.md index 10895716d..87da1e3b0 100644 --- a/exercises/114-filterOddElements/README.md +++ b/exercises/118-filterOddElements/README.md @@ -1,4 +1,4 @@ -# `114` filterOddElements +# `118` filterOddElements ## 📝 Instructions: diff --git a/exercises/114-filterOddElements/app.js b/exercises/118-filterOddElements/app.js similarity index 100% rename from exercises/114-filterOddElements/app.js rename to exercises/118-filterOddElements/app.js diff --git a/exercises/114-filterOddElements/solution.hide.js b/exercises/118-filterOddElements/solution.hide.js similarity index 100% rename from exercises/114-filterOddElements/solution.hide.js rename to exercises/118-filterOddElements/solution.hide.js diff --git a/exercises/114-filterOddElements/test.js b/exercises/118-filterOddElements/test.js similarity index 100% rename from exercises/114-filterOddElements/test.js rename to exercises/118-filterOddElements/test.js diff --git a/exercises/115-computeProductOfAllElements/README.es.md b/exercises/119-computeProductOfAllElements/README.es.md similarity index 91% rename from exercises/115-computeProductOfAllElements/README.es.md rename to exercises/119-computeProductOfAllElements/README.es.md index e55eb0a70..47b1c8c78 100644 --- a/exercises/115-computeProductOfAllElements/README.es.md +++ b/exercises/119-computeProductOfAllElements/README.es.md @@ -1,4 +1,4 @@ -# `115` computeProductOfAllElements +# `119` computeProductOfAllElements ## 📝 Instrucciones: diff --git a/exercises/115-computeProductOfAllElements/README.md b/exercises/119-computeProductOfAllElements/README.md similarity index 91% rename from exercises/115-computeProductOfAllElements/README.md rename to exercises/119-computeProductOfAllElements/README.md index 9b9db5139..d83157cb7 100644 --- a/exercises/115-computeProductOfAllElements/README.md +++ b/exercises/119-computeProductOfAllElements/README.md @@ -1,4 +1,4 @@ -# `115` computeProductOfAllElements +# `119` computeProductOfAllElements ## 📝 Instructions: diff --git a/exercises/115-computeProductOfAllElements/app.js b/exercises/119-computeProductOfAllElements/app.js similarity index 100% rename from exercises/115-computeProductOfAllElements/app.js rename to exercises/119-computeProductOfAllElements/app.js diff --git a/exercises/115-computeProductOfAllElements/solution.hide.js b/exercises/119-computeProductOfAllElements/solution.hide.js similarity index 100% rename from exercises/115-computeProductOfAllElements/solution.hide.js rename to exercises/119-computeProductOfAllElements/solution.hide.js diff --git a/exercises/115-computeProductOfAllElements/test.js b/exercises/119-computeProductOfAllElements/test.js similarity index 100% rename from exercises/115-computeProductOfAllElements/test.js rename to exercises/119-computeProductOfAllElements/test.js diff --git a/exercises/116-filterEvenElements/README.es.md b/exercises/120-filterEvenElements/README.es.md similarity index 92% rename from exercises/116-filterEvenElements/README.es.md rename to exercises/120-filterEvenElements/README.es.md index a9a7f5dec..a5a2b5bb1 100644 --- a/exercises/116-filterEvenElements/README.es.md +++ b/exercises/120-filterEvenElements/README.es.md @@ -1,4 +1,4 @@ -# `116` filterEvenElements +# `120` filterEvenElements ## 📝 Instrucciones: diff --git a/exercises/116-filterEvenElements/README.md b/exercises/120-filterEvenElements/README.md similarity index 91% rename from exercises/116-filterEvenElements/README.md rename to exercises/120-filterEvenElements/README.md index a58116622..6211a2c0c 100644 --- a/exercises/116-filterEvenElements/README.md +++ b/exercises/120-filterEvenElements/README.md @@ -1,4 +1,4 @@ -# `116` filterEvenElements +# `120` filterEvenElements ## 📝 Instructions: diff --git a/exercises/116-filterEvenElements/app.js b/exercises/120-filterEvenElements/app.js similarity index 100% rename from exercises/116-filterEvenElements/app.js rename to exercises/120-filterEvenElements/app.js diff --git a/exercises/116-filterEvenElements/solution.hide.js b/exercises/120-filterEvenElements/solution.hide.js similarity index 100% rename from exercises/116-filterEvenElements/solution.hide.js rename to exercises/120-filterEvenElements/solution.hide.js diff --git a/exercises/116-filterEvenElements/test.js b/exercises/120-filterEvenElements/test.js similarity index 100% rename from exercises/116-filterEvenElements/test.js rename to exercises/120-filterEvenElements/test.js diff --git a/exercises/117-getLengthOfShortestElement/README.es.md b/exercises/121-getLengthOfShortestElement/README.es.md similarity index 91% rename from exercises/117-getLengthOfShortestElement/README.es.md rename to exercises/121-getLengthOfShortestElement/README.es.md index a06f2ceda..ba17c9f78 100644 --- a/exercises/117-getLengthOfShortestElement/README.es.md +++ b/exercises/121-getLengthOfShortestElement/README.es.md @@ -1,4 +1,4 @@ -# `117` getLengthOfShortestElement +# `121` getLengthOfShortestElement ## 📝 Instrucciones: diff --git a/exercises/117-getLengthOfShortestElement/README.md b/exercises/121-getLengthOfShortestElement/README.md similarity index 91% rename from exercises/117-getLengthOfShortestElement/README.md rename to exercises/121-getLengthOfShortestElement/README.md index db77cbf59..e0beb3414 100644 --- a/exercises/117-getLengthOfShortestElement/README.md +++ b/exercises/121-getLengthOfShortestElement/README.md @@ -1,4 +1,4 @@ -# `117` getLengthOfShortestElement +# `121` getLengthOfShortestElement ## 📝 Instructions: diff --git a/exercises/117-getLengthOfShortestElement/app.js b/exercises/121-getLengthOfShortestElement/app.js similarity index 100% rename from exercises/117-getLengthOfShortestElement/app.js rename to exercises/121-getLengthOfShortestElement/app.js diff --git a/exercises/117-getLengthOfShortestElement/solution.hide.js b/exercises/121-getLengthOfShortestElement/solution.hide.js similarity index 100% rename from exercises/117-getLengthOfShortestElement/solution.hide.js rename to exercises/121-getLengthOfShortestElement/solution.hide.js diff --git a/exercises/117-getLengthOfShortestElement/test.js b/exercises/121-getLengthOfShortestElement/test.js similarity index 100% rename from exercises/117-getLengthOfShortestElement/test.js rename to exercises/121-getLengthOfShortestElement/test.js diff --git a/exercises/118-getLongestElement/README.es.md b/exercises/122-getLongestElement/README.es.md similarity index 94% rename from exercises/118-getLongestElement/README.es.md rename to exercises/122-getLongestElement/README.es.md index d31c76ab4..5337f3ec5 100644 --- a/exercises/118-getLongestElement/README.es.md +++ b/exercises/122-getLongestElement/README.es.md @@ -1,4 +1,4 @@ -# `118` getLongestElement +# `122` getLongestElement ## 📝 Instrucciones: diff --git a/exercises/118-getLongestElement/README.md b/exercises/122-getLongestElement/README.md similarity index 94% rename from exercises/118-getLongestElement/README.md rename to exercises/122-getLongestElement/README.md index 60562b207..c96dd1f7c 100644 --- a/exercises/118-getLongestElement/README.md +++ b/exercises/122-getLongestElement/README.md @@ -1,4 +1,4 @@ -# `118` getLongestElement +# `122` getLongestElement ## 📝 Instructions: diff --git a/exercises/118-getLongestElement/app.js b/exercises/122-getLongestElement/app.js similarity index 100% rename from exercises/118-getLongestElement/app.js rename to exercises/122-getLongestElement/app.js diff --git a/exercises/118-getLongestElement/solution.hide.js b/exercises/122-getLongestElement/solution.hide.js similarity index 100% rename from exercises/118-getLongestElement/solution.hide.js rename to exercises/122-getLongestElement/solution.hide.js diff --git a/exercises/118-getLongestElement/test.js b/exercises/122-getLongestElement/test.js similarity index 100% rename from exercises/118-getLongestElement/test.js rename to exercises/122-getLongestElement/test.js diff --git a/exercises/119-findSmallestElement/README.es.md b/exercises/123-findSmallestElement/README.es.md similarity index 92% rename from exercises/119-findSmallestElement/README.es.md rename to exercises/123-findSmallestElement/README.es.md index 2d87c5863..3717965f8 100644 --- a/exercises/119-findSmallestElement/README.es.md +++ b/exercises/123-findSmallestElement/README.es.md @@ -1,4 +1,4 @@ -# `119` findSmallestElement +# `123` findSmallestElement ## 📝 Instrucciones: diff --git a/exercises/119-findSmallestElement/README.md b/exercises/123-findSmallestElement/README.md similarity index 92% rename from exercises/119-findSmallestElement/README.md rename to exercises/123-findSmallestElement/README.md index ae75ad287..d6fbadfca 100644 --- a/exercises/119-findSmallestElement/README.md +++ b/exercises/123-findSmallestElement/README.md @@ -1,4 +1,4 @@ -# `119` findSmallestElement +# `123` findSmallestElement ## 📝 Instructions: diff --git a/exercises/119-findSmallestElement/app.js b/exercises/123-findSmallestElement/app.js similarity index 100% rename from exercises/119-findSmallestElement/app.js rename to exercises/123-findSmallestElement/app.js diff --git a/exercises/119-findSmallestElement/solution.hide.js b/exercises/123-findSmallestElement/solution.hide.js similarity index 100% rename from exercises/119-findSmallestElement/solution.hide.js rename to exercises/123-findSmallestElement/solution.hide.js diff --git a/exercises/119-findSmallestElement/test.js b/exercises/123-findSmallestElement/test.js similarity index 100% rename from exercises/119-findSmallestElement/test.js rename to exercises/123-findSmallestElement/test.js diff --git a/exercises/120-findShortestElement/README.es.md b/exercises/124-findShortestElement/README.es.md similarity index 94% rename from exercises/120-findShortestElement/README.es.md rename to exercises/124-findShortestElement/README.es.md index 0cdff573f..8fd429491 100644 --- a/exercises/120-findShortestElement/README.es.md +++ b/exercises/124-findShortestElement/README.es.md @@ -1,4 +1,4 @@ -# `120` findShortestElement +# `124` findShortestElement ## 📝 Instrucciones: diff --git a/exercises/120-findShortestElement/README.md b/exercises/124-findShortestElement/README.md similarity index 94% rename from exercises/120-findShortestElement/README.md rename to exercises/124-findShortestElement/README.md index cbc7f865a..1bed8594a 100644 --- a/exercises/120-findShortestElement/README.md +++ b/exercises/124-findShortestElement/README.md @@ -1,4 +1,4 @@ -# `120` findShortestElement +# `124` findShortestElement ## 📝 Instructions: diff --git a/exercises/120-findShortestElement/app.js b/exercises/124-findShortestElement/app.js similarity index 100% rename from exercises/120-findShortestElement/app.js rename to exercises/124-findShortestElement/app.js diff --git a/exercises/120-findShortestElement/solution.hide.js b/exercises/124-findShortestElement/solution.hide.js similarity index 100% rename from exercises/120-findShortestElement/solution.hide.js rename to exercises/124-findShortestElement/solution.hide.js diff --git a/exercises/120-findShortestElement/test.js b/exercises/124-findShortestElement/test.js similarity index 100% rename from exercises/120-findShortestElement/test.js rename to exercises/124-findShortestElement/test.js diff --git a/exercises/121-getLargestElement/README.es.md b/exercises/125-getLargestElement/README.es.md similarity index 92% rename from exercises/121-getLargestElement/README.es.md rename to exercises/125-getLargestElement/README.es.md index 87b1e102c..91e3fb80e 100644 --- a/exercises/121-getLargestElement/README.es.md +++ b/exercises/125-getLargestElement/README.es.md @@ -1,4 +1,4 @@ -# `121` getLargestElement +# `125` getLargestElement ## 📝 Instrucciones: diff --git a/exercises/121-getLargestElement/README.md b/exercises/125-getLargestElement/README.md similarity index 92% rename from exercises/121-getLargestElement/README.md rename to exercises/125-getLargestElement/README.md index 9d6aed010..93b69d58c 100644 --- a/exercises/121-getLargestElement/README.md +++ b/exercises/125-getLargestElement/README.md @@ -1,4 +1,4 @@ -# `121` getLargestElement +# `125` getLargestElement ## 📝 Instructions: diff --git a/exercises/121-getLargestElement/app.js b/exercises/125-getLargestElement/app.js similarity index 100% rename from exercises/121-getLargestElement/app.js rename to exercises/125-getLargestElement/app.js diff --git a/exercises/121-getLargestElement/solution.hide.js b/exercises/125-getLargestElement/solution.hide.js similarity index 100% rename from exercises/121-getLargestElement/solution.hide.js rename to exercises/125-getLargestElement/solution.hide.js diff --git a/exercises/121-getLargestElement/test.js b/exercises/125-getLargestElement/test.js similarity index 100% rename from exercises/121-getLargestElement/test.js rename to exercises/125-getLargestElement/test.js diff --git a/exercises/122-computeSumOfAllElements/README.es.md b/exercises/126-computeSumOfAllElements/README.es.md similarity index 90% rename from exercises/122-computeSumOfAllElements/README.es.md rename to exercises/126-computeSumOfAllElements/README.es.md index 333f06f0d..9cd68e78d 100644 --- a/exercises/122-computeSumOfAllElements/README.es.md +++ b/exercises/126-computeSumOfAllElements/README.es.md @@ -1,4 +1,4 @@ -# `122` computeSumOfAllElements +# `126` computeSumOfAllElements ## 📝 Instrucciones: diff --git a/exercises/122-computeSumOfAllElements/README.md b/exercises/126-computeSumOfAllElements/README.md similarity index 90% rename from exercises/122-computeSumOfAllElements/README.md rename to exercises/126-computeSumOfAllElements/README.md index 3444ba21f..e1de2bb88 100644 --- a/exercises/122-computeSumOfAllElements/README.md +++ b/exercises/126-computeSumOfAllElements/README.md @@ -1,4 +1,4 @@ -# `122` computeSumOfAllElements +# `126` computeSumOfAllElements ## 📝 Instructions: diff --git a/exercises/122-computeSumOfAllElements/app.js b/exercises/126-computeSumOfAllElements/app.js similarity index 100% rename from exercises/122-computeSumOfAllElements/app.js rename to exercises/126-computeSumOfAllElements/app.js diff --git a/exercises/122-computeSumOfAllElements/solution.hide.js b/exercises/126-computeSumOfAllElements/solution.hide.js similarity index 100% rename from exercises/122-computeSumOfAllElements/solution.hide.js rename to exercises/126-computeSumOfAllElements/solution.hide.js diff --git a/exercises/122-computeSumOfAllElements/test.js b/exercises/126-computeSumOfAllElements/test.js similarity index 100% rename from exercises/122-computeSumOfAllElements/test.js rename to exercises/126-computeSumOfAllElements/test.js diff --git a/exercises/123-joinArraysOfArrays/README.es.md b/exercises/127-joinArraysOfArrays/README.es.md similarity index 94% rename from exercises/123-joinArraysOfArrays/README.es.md rename to exercises/127-joinArraysOfArrays/README.es.md index 685f47a70..8eba53064 100644 --- a/exercises/123-joinArraysOfArrays/README.es.md +++ b/exercises/127-joinArraysOfArrays/README.es.md @@ -1,4 +1,4 @@ -# `123` joinArrayOfArrays +# `127` joinArrayOfArrays ## 📝 Instrucciones: diff --git a/exercises/123-joinArraysOfArrays/README.md b/exercises/127-joinArraysOfArrays/README.md similarity index 94% rename from exercises/123-joinArraysOfArrays/README.md rename to exercises/127-joinArraysOfArrays/README.md index d45708151..f120edaa5 100644 --- a/exercises/123-joinArraysOfArrays/README.md +++ b/exercises/127-joinArraysOfArrays/README.md @@ -1,4 +1,4 @@ -# `123` joinArrayOfArrays +# `127` joinArrayOfArrays ## 📝 Instructions: diff --git a/exercises/123-joinArraysOfArrays/app.js b/exercises/127-joinArraysOfArrays/app.js similarity index 100% rename from exercises/123-joinArraysOfArrays/app.js rename to exercises/127-joinArraysOfArrays/app.js diff --git a/exercises/123-joinArraysOfArrays/solution.hide.js b/exercises/127-joinArraysOfArrays/solution.hide.js similarity index 100% rename from exercises/123-joinArraysOfArrays/solution.hide.js rename to exercises/127-joinArraysOfArrays/solution.hide.js diff --git a/exercises/123-joinArraysOfArrays/test.js b/exercises/127-joinArraysOfArrays/test.js similarity index 100% rename from exercises/123-joinArraysOfArrays/test.js rename to exercises/127-joinArraysOfArrays/test.js diff --git a/exercises/124-findShortestWordAmongMixedElements/README.es.md b/exercises/128-findShortestWordAmongMixedElements/README.es.md similarity index 94% rename from exercises/124-findShortestWordAmongMixedElements/README.es.md rename to exercises/128-findShortestWordAmongMixedElements/README.es.md index d08a278bc..67cb81823 100644 --- a/exercises/124-findShortestWordAmongMixedElements/README.es.md +++ b/exercises/128-findShortestWordAmongMixedElements/README.es.md @@ -1,4 +1,4 @@ -# `124` findShortestWordAmongMixedElements +# `128` findShortestWordAmongMixedElements ## 📝 Instrucciones: diff --git a/exercises/124-findShortestWordAmongMixedElements/README.md b/exercises/128-findShortestWordAmongMixedElements/README.md similarity index 93% rename from exercises/124-findShortestWordAmongMixedElements/README.md rename to exercises/128-findShortestWordAmongMixedElements/README.md index 8f6f98d0e..82ed3598f 100644 --- a/exercises/124-findShortestWordAmongMixedElements/README.md +++ b/exercises/128-findShortestWordAmongMixedElements/README.md @@ -1,4 +1,4 @@ -# `124` findShortestWordAmongMixedElements +# `128` findShortestWordAmongMixedElements ## 📝 Instructions: diff --git a/exercises/124-findShortestWordAmongMixedElements/app.js b/exercises/128-findShortestWordAmongMixedElements/app.js similarity index 100% rename from exercises/124-findShortestWordAmongMixedElements/app.js rename to exercises/128-findShortestWordAmongMixedElements/app.js diff --git a/exercises/124-findShortestWordAmongMixedElements/solution.hide.js b/exercises/128-findShortestWordAmongMixedElements/solution.hide.js similarity index 100% rename from exercises/124-findShortestWordAmongMixedElements/solution.hide.js rename to exercises/128-findShortestWordAmongMixedElements/solution.hide.js diff --git a/exercises/124-findShortestWordAmongMixedElements/test.js b/exercises/128-findShortestWordAmongMixedElements/test.js similarity index 100% rename from exercises/124-findShortestWordAmongMixedElements/test.js rename to exercises/128-findShortestWordAmongMixedElements/test.js diff --git a/exercises/125-findSmallestnumberAmongMixedElements/README.es.md b/exercises/129-findSmallestnumberAmongMixedElements/README.es.md similarity index 91% rename from exercises/125-findSmallestnumberAmongMixedElements/README.es.md rename to exercises/129-findSmallestnumberAmongMixedElements/README.es.md index d3c3b6b02..46ee77fd8 100644 --- a/exercises/125-findSmallestnumberAmongMixedElements/README.es.md +++ b/exercises/129-findSmallestnumberAmongMixedElements/README.es.md @@ -1,4 +1,4 @@ -# `125` findSmallestNumberAmongMixedElements +# `129` findSmallestNumberAmongMixedElements ## 📝 Instrucciones: diff --git a/exercises/125-findSmallestnumberAmongMixedElements/README.md b/exercises/129-findSmallestnumberAmongMixedElements/README.md similarity index 91% rename from exercises/125-findSmallestnumberAmongMixedElements/README.md rename to exercises/129-findSmallestnumberAmongMixedElements/README.md index 8d15adb75..732efe5e0 100644 --- a/exercises/125-findSmallestnumberAmongMixedElements/README.md +++ b/exercises/129-findSmallestnumberAmongMixedElements/README.md @@ -1,4 +1,4 @@ -# `125` findSmallestNumberAmongMixedElements +# `129` findSmallestNumberAmongMixedElements ## 📝 Instructions: diff --git a/exercises/125-findSmallestnumberAmongMixedElements/app.js b/exercises/129-findSmallestnumberAmongMixedElements/app.js similarity index 100% rename from exercises/125-findSmallestnumberAmongMixedElements/app.js rename to exercises/129-findSmallestnumberAmongMixedElements/app.js diff --git a/exercises/125-findSmallestnumberAmongMixedElements/solution.hide.js b/exercises/129-findSmallestnumberAmongMixedElements/solution.hide.js similarity index 100% rename from exercises/125-findSmallestnumberAmongMixedElements/solution.hide.js rename to exercises/129-findSmallestnumberAmongMixedElements/solution.hide.js diff --git a/exercises/125-findSmallestnumberAmongMixedElements/test.js b/exercises/129-findSmallestnumberAmongMixedElements/test.js similarity index 100% rename from exercises/125-findSmallestnumberAmongMixedElements/test.js rename to exercises/129-findSmallestnumberAmongMixedElements/test.js diff --git a/exercises/126-getLongestWordOfMixedElements/README.es.md b/exercises/130-getLongestWordOfMixedElements/README.es.md similarity index 93% rename from exercises/126-getLongestWordOfMixedElements/README.es.md rename to exercises/130-getLongestWordOfMixedElements/README.es.md index ad36ce448..44e77ceec 100644 --- a/exercises/126-getLongestWordOfMixedElements/README.es.md +++ b/exercises/130-getLongestWordOfMixedElements/README.es.md @@ -1,4 +1,4 @@ -# `126` getLongestWordOfMixedElements +# `130` getLongestWordOfMixedElements ## 📝 Instrucciones: diff --git a/exercises/126-getLongestWordOfMixedElements/README.md b/exercises/130-getLongestWordOfMixedElements/README.md similarity index 92% rename from exercises/126-getLongestWordOfMixedElements/README.md rename to exercises/130-getLongestWordOfMixedElements/README.md index 0bfbc3140..9d013e789 100644 --- a/exercises/126-getLongestWordOfMixedElements/README.md +++ b/exercises/130-getLongestWordOfMixedElements/README.md @@ -1,4 +1,4 @@ -# `126` getLongestWordOfMixedElements +# `130` getLongestWordOfMixedElements ## 📝 Instructions: diff --git a/exercises/126-getLongestWordOfMixedElements/app.js b/exercises/130-getLongestWordOfMixedElements/app.js similarity index 100% rename from exercises/126-getLongestWordOfMixedElements/app.js rename to exercises/130-getLongestWordOfMixedElements/app.js diff --git a/exercises/126-getLongestWordOfMixedElements/solution.hide.js b/exercises/130-getLongestWordOfMixedElements/solution.hide.js similarity index 100% rename from exercises/126-getLongestWordOfMixedElements/solution.hide.js rename to exercises/130-getLongestWordOfMixedElements/solution.hide.js diff --git a/exercises/126-getLongestWordOfMixedElements/test.js b/exercises/130-getLongestWordOfMixedElements/test.js similarity index 100% rename from exercises/126-getLongestWordOfMixedElements/test.js rename to exercises/130-getLongestWordOfMixedElements/test.js diff --git a/exercises/127-getLargestNumberAmongMixedElements/README.es.md b/exercises/131-getLargestNumberAmongMixedElements/README.es.md similarity index 91% rename from exercises/127-getLargestNumberAmongMixedElements/README.es.md rename to exercises/131-getLargestNumberAmongMixedElements/README.es.md index ad6c90d4f..ab056cae7 100644 --- a/exercises/127-getLargestNumberAmongMixedElements/README.es.md +++ b/exercises/131-getLargestNumberAmongMixedElements/README.es.md @@ -1,4 +1,4 @@ -# `127` getLargestNumberAmongMixedElements +# `131` getLargestNumberAmongMixedElements ## 📝 Instrucciones: diff --git a/exercises/127-getLargestNumberAmongMixedElements/README.md b/exercises/131-getLargestNumberAmongMixedElements/README.md similarity index 91% rename from exercises/127-getLargestNumberAmongMixedElements/README.md rename to exercises/131-getLargestNumberAmongMixedElements/README.md index 97e20d92d..ca0c58537 100644 --- a/exercises/127-getLargestNumberAmongMixedElements/README.md +++ b/exercises/131-getLargestNumberAmongMixedElements/README.md @@ -1,4 +1,4 @@ -# `127` getLargestNumberAmongMixedElements +# `131` getLargestNumberAmongMixedElements ## 📝 Instructions: diff --git a/exercises/127-getLargestNumberAmongMixedElements/app.js b/exercises/131-getLargestNumberAmongMixedElements/app.js similarity index 100% rename from exercises/127-getLargestNumberAmongMixedElements/app.js rename to exercises/131-getLargestNumberAmongMixedElements/app.js diff --git a/exercises/127-getLargestNumberAmongMixedElements/solution.hide.js b/exercises/131-getLargestNumberAmongMixedElements/solution.hide.js similarity index 100% rename from exercises/127-getLargestNumberAmongMixedElements/solution.hide.js rename to exercises/131-getLargestNumberAmongMixedElements/solution.hide.js diff --git a/exercises/127-getLargestNumberAmongMixedElements/test.js b/exercises/131-getLargestNumberAmongMixedElements/test.js similarity index 100% rename from exercises/127-getLargestNumberAmongMixedElements/test.js rename to exercises/131-getLargestNumberAmongMixedElements/test.js diff --git a/exercises/128-averageIntegers/README.es.md b/exercises/132-averageIntegers/README.es.md similarity index 94% rename from exercises/128-averageIntegers/README.es.md rename to exercises/132-averageIntegers/README.es.md index 82bc6628a..ecd9eaefb 100644 --- a/exercises/128-averageIntegers/README.es.md +++ b/exercises/132-averageIntegers/README.es.md @@ -1,4 +1,4 @@ -# `128` averageIntegers +# `132` averageIntegers ## 📝 Instrucciones: diff --git a/exercises/128-averageIntegers/README.md b/exercises/132-averageIntegers/README.md similarity index 94% rename from exercises/128-averageIntegers/README.md rename to exercises/132-averageIntegers/README.md index 53c757cb1..8b4a6912b 100644 --- a/exercises/128-averageIntegers/README.md +++ b/exercises/132-averageIntegers/README.md @@ -1,4 +1,4 @@ -# `128` averageIntegers +# `132` averageIntegers ## 📝 Instructions: diff --git a/exercises/128-averageIntegers/app.js b/exercises/132-averageIntegers/app.js similarity index 100% rename from exercises/128-averageIntegers/app.js rename to exercises/132-averageIntegers/app.js diff --git a/exercises/128-averageIntegers/solution.hide.js b/exercises/132-averageIntegers/solution.hide.js similarity index 100% rename from exercises/128-averageIntegers/solution.hide.js rename to exercises/132-averageIntegers/solution.hide.js diff --git a/exercises/128-averageIntegers/test.js b/exercises/132-averageIntegers/test.js similarity index 100% rename from exercises/128-averageIntegers/test.js rename to exercises/132-averageIntegers/test.js diff --git a/exercises/129-calculateBillTotal/README.es.md b/exercises/133-calculateBillTotal/README.es.md similarity index 95% rename from exercises/129-calculateBillTotal/README.es.md rename to exercises/133-calculateBillTotal/README.es.md index 315cb1ba6..26de1e94c 100644 --- a/exercises/129-calculateBillTotal/README.es.md +++ b/exercises/133-calculateBillTotal/README.es.md @@ -1,4 +1,4 @@ -# `129` calculateBillTotal +# `133` calculateBillTotal ## 📝 Instrucciones: diff --git a/exercises/129-calculateBillTotal/README.md b/exercises/133-calculateBillTotal/README.md similarity index 94% rename from exercises/129-calculateBillTotal/README.md rename to exercises/133-calculateBillTotal/README.md index 389f017e2..6053108e5 100644 --- a/exercises/129-calculateBillTotal/README.md +++ b/exercises/133-calculateBillTotal/README.md @@ -1,4 +1,4 @@ -# `129` calculateBillTotal +# `133` calculateBillTotal ## 📝 Instructions: diff --git a/exercises/129-calculateBillTotal/app.js b/exercises/133-calculateBillTotal/app.js similarity index 100% rename from exercises/129-calculateBillTotal/app.js rename to exercises/133-calculateBillTotal/app.js diff --git a/exercises/129-calculateBillTotal/solution.hide.js b/exercises/133-calculateBillTotal/solution.hide.js similarity index 100% rename from exercises/129-calculateBillTotal/solution.hide.js rename to exercises/133-calculateBillTotal/solution.hide.js diff --git a/exercises/129-calculateBillTotal/test.js b/exercises/133-calculateBillTotal/test.js similarity index 100% rename from exercises/129-calculateBillTotal/test.js rename to exercises/133-calculateBillTotal/test.js diff --git a/exercises/130-multiplyBetween/README.es.md b/exercises/134-multiplyBetween/README.es.md similarity index 95% rename from exercises/130-multiplyBetween/README.es.md rename to exercises/134-multiplyBetween/README.es.md index fd7df2088..029258cd6 100644 --- a/exercises/130-multiplyBetween/README.es.md +++ b/exercises/134-multiplyBetween/README.es.md @@ -1,4 +1,4 @@ -# `130` multiplyBetween +# `134` multiplyBetween ## 📝 Instrucciones: diff --git a/exercises/130-multiplyBetween/README.md b/exercises/134-multiplyBetween/README.md similarity index 94% rename from exercises/130-multiplyBetween/README.md rename to exercises/134-multiplyBetween/README.md index 37b1a6db8..3b98c89fc 100644 --- a/exercises/130-multiplyBetween/README.md +++ b/exercises/134-multiplyBetween/README.md @@ -1,4 +1,4 @@ -# `130` multiplyBetween +# `134` multiplyBetween ## 📝 Instructions: diff --git a/exercises/130-multiplyBetween/app.js b/exercises/134-multiplyBetween/app.js similarity index 100% rename from exercises/130-multiplyBetween/app.js rename to exercises/134-multiplyBetween/app.js diff --git a/exercises/130-multiplyBetween/solution.hide.js b/exercises/134-multiplyBetween/solution.hide.js similarity index 100% rename from exercises/130-multiplyBetween/solution.hide.js rename to exercises/134-multiplyBetween/solution.hide.js diff --git a/exercises/130-multiplyBetween/test.js b/exercises/134-multiplyBetween/test.js similarity index 100% rename from exercises/130-multiplyBetween/test.js rename to exercises/134-multiplyBetween/test.js diff --git a/exercises/131-computeSumBetween/README.es.md b/exercises/135-computeSumBetween/README.es.md similarity index 94% rename from exercises/131-computeSumBetween/README.es.md rename to exercises/135-computeSumBetween/README.es.md index 677d4bbf8..136395778 100644 --- a/exercises/131-computeSumBetween/README.es.md +++ b/exercises/135-computeSumBetween/README.es.md @@ -1,4 +1,4 @@ -# `131` computeSumBetween +# `135` computeSumBetween ## 📝 Instrucciones: diff --git a/exercises/131-computeSumBetween/README.md b/exercises/135-computeSumBetween/README.md similarity index 94% rename from exercises/131-computeSumBetween/README.md rename to exercises/135-computeSumBetween/README.md index 80044e137..08a7a19fc 100644 --- a/exercises/131-computeSumBetween/README.md +++ b/exercises/135-computeSumBetween/README.md @@ -1,4 +1,4 @@ -# `131` computeSumBetween +# `135` computeSumBetween ## 📝 Instructions: diff --git a/exercises/131-computeSumBetween/app.js b/exercises/135-computeSumBetween/app.js similarity index 99% rename from exercises/131-computeSumBetween/app.js rename to exercises/135-computeSumBetween/app.js index ef0828c81..3921ffb19 100644 --- a/exercises/131-computeSumBetween/app.js +++ b/exercises/135-computeSumBetween/app.js @@ -1,6 +1,5 @@ function computeSumBetween(num1, num2) { // your code here - } let output = computeSumBetween(2, 5); diff --git a/exercises/131-computeSumBetween/solution.hide.js b/exercises/135-computeSumBetween/solution.hide.js similarity index 100% rename from exercises/131-computeSumBetween/solution.hide.js rename to exercises/135-computeSumBetween/solution.hide.js diff --git a/exercises/131-computeSumBetween/test.js b/exercises/135-computeSumBetween/test.js similarity index 100% rename from exercises/131-computeSumBetween/test.js rename to exercises/135-computeSumBetween/test.js diff --git a/exercises/132-computeSummationToN/README.es.md b/exercises/136-computeSummationToN/README.es.md similarity index 93% rename from exercises/132-computeSummationToN/README.es.md rename to exercises/136-computeSummationToN/README.es.md index e09921764..c23a07783 100644 --- a/exercises/132-computeSummationToN/README.es.md +++ b/exercises/136-computeSummationToN/README.es.md @@ -1,4 +1,4 @@ -# `132` computeSummationToN +# `136` computeSummationToN ## 📝 Instrucciones: diff --git a/exercises/132-computeSummationToN/README.md b/exercises/136-computeSummationToN/README.md similarity index 93% rename from exercises/132-computeSummationToN/README.md rename to exercises/136-computeSummationToN/README.md index d15e8ddcc..6addd315f 100644 --- a/exercises/132-computeSummationToN/README.md +++ b/exercises/136-computeSummationToN/README.md @@ -1,4 +1,4 @@ -# `132` computeSummationToN +# `136` computeSummationToN ## 📝 Instructions: diff --git a/exercises/132-computeSummationToN/app.js b/exercises/136-computeSummationToN/app.js similarity index 100% rename from exercises/132-computeSummationToN/app.js rename to exercises/136-computeSummationToN/app.js diff --git a/exercises/132-computeSummationToN/solution.hide.js b/exercises/136-computeSummationToN/solution.hide.js similarity index 100% rename from exercises/132-computeSummationToN/solution.hide.js rename to exercises/136-computeSummationToN/solution.hide.js diff --git a/exercises/132-computeSummationToN/test.js b/exercises/136-computeSummationToN/test.js similarity index 100% rename from exercises/132-computeSummationToN/test.js rename to exercises/136-computeSummationToN/test.js diff --git a/exercises/133-convertScoreToGrade/README.es.md b/exercises/137-convertScoreToGrade/README.es.md similarity index 95% rename from exercises/133-convertScoreToGrade/README.es.md rename to exercises/137-convertScoreToGrade/README.es.md index b08c218cd..c24f5b34d 100644 --- a/exercises/133-convertScoreToGrade/README.es.md +++ b/exercises/137-convertScoreToGrade/README.es.md @@ -1,4 +1,4 @@ -# `133` convertScoreToGrade +# `137` convertScoreToGrade ## 📝 Instrucciones: diff --git a/exercises/133-convertScoreToGrade/README.md b/exercises/137-convertScoreToGrade/README.md similarity index 95% rename from exercises/133-convertScoreToGrade/README.md rename to exercises/137-convertScoreToGrade/README.md index b4c2b6350..b267beec2 100644 --- a/exercises/133-convertScoreToGrade/README.md +++ b/exercises/137-convertScoreToGrade/README.md @@ -1,4 +1,4 @@ -# `133` convertScoreToGrade +# `137` convertScoreToGrade ## 📝 Instructions: diff --git a/exercises/133-convertScoreToGrade/app.js b/exercises/137-convertScoreToGrade/app.js similarity index 100% rename from exercises/133-convertScoreToGrade/app.js rename to exercises/137-convertScoreToGrade/app.js diff --git a/exercises/133-convertScoreToGrade/solution.hide.js b/exercises/137-convertScoreToGrade/solution.hide.js similarity index 100% rename from exercises/133-convertScoreToGrade/solution.hide.js rename to exercises/137-convertScoreToGrade/solution.hide.js diff --git a/exercises/133-convertScoreToGrade/test.js b/exercises/137-convertScoreToGrade/test.js similarity index 100% rename from exercises/133-convertScoreToGrade/test.js rename to exercises/137-convertScoreToGrade/test.js diff --git a/exercises/134-convertScoreToGradeWithPlus/README.es.md b/exercises/138-convertScoreToGradeWithPlus/README.es.md similarity index 95% rename from exercises/134-convertScoreToGradeWithPlus/README.es.md rename to exercises/138-convertScoreToGradeWithPlus/README.es.md index acf1e279d..bded8858d 100644 --- a/exercises/134-convertScoreToGradeWithPlus/README.es.md +++ b/exercises/138-convertScoreToGradeWithPlus/README.es.md @@ -1,4 +1,4 @@ -# `134` convertScoreToGradeWithPlusAndMinus +# `138` convertScoreToGradeWithPlusAndMinus ## 📝 Instrucciones: diff --git a/exercises/134-convertScoreToGradeWithPlus/README.md b/exercises/138-convertScoreToGradeWithPlus/README.md similarity index 95% rename from exercises/134-convertScoreToGradeWithPlus/README.md rename to exercises/138-convertScoreToGradeWithPlus/README.md index 5e2f0361a..2382a8743 100644 --- a/exercises/134-convertScoreToGradeWithPlus/README.md +++ b/exercises/138-convertScoreToGradeWithPlus/README.md @@ -1,4 +1,4 @@ -# `134` convertScoreToGradeWithPlusAndMinus +# `138` convertScoreToGradeWithPlusAndMinus ## 📝 Instructions: diff --git a/exercises/134-convertScoreToGradeWithPlus/app.js b/exercises/138-convertScoreToGradeWithPlus/app.js similarity index 100% rename from exercises/134-convertScoreToGradeWithPlus/app.js rename to exercises/138-convertScoreToGradeWithPlus/app.js diff --git a/exercises/134-convertScoreToGradeWithPlus/solution.hide.js b/exercises/138-convertScoreToGradeWithPlus/solution.hide.js similarity index 100% rename from exercises/134-convertScoreToGradeWithPlus/solution.hide.js rename to exercises/138-convertScoreToGradeWithPlus/solution.hide.js diff --git a/exercises/134-convertScoreToGradeWithPlus/test.js b/exercises/138-convertScoreToGradeWithPlus/test.js similarity index 100% rename from exercises/134-convertScoreToGradeWithPlus/test.js rename to exercises/138-convertScoreToGradeWithPlus/test.js diff --git a/exercises/135-computeFactorialOfN/README.es.md b/exercises/139-computeFactorialOfN/README.es.md similarity index 94% rename from exercises/135-computeFactorialOfN/README.es.md rename to exercises/139-computeFactorialOfN/README.es.md index 3c652c408..5b501db3d 100644 --- a/exercises/135-computeFactorialOfN/README.es.md +++ b/exercises/139-computeFactorialOfN/README.es.md @@ -1,4 +1,4 @@ -# `135` computeFactorialOfN +# `139` computeFactorialOfN ## 📝 Instrucciones: diff --git a/exercises/135-computeFactorialOfN/README.md b/exercises/139-computeFactorialOfN/README.md similarity index 94% rename from exercises/135-computeFactorialOfN/README.md rename to exercises/139-computeFactorialOfN/README.md index fa1bbab4a..92a5ad36e 100644 --- a/exercises/135-computeFactorialOfN/README.md +++ b/exercises/139-computeFactorialOfN/README.md @@ -1,4 +1,4 @@ -# `135` computeFactorialOfN +# `139` computeFactorialOfN ## 📝 Instructions: diff --git a/exercises/135-computeFactorialOfN/app.js b/exercises/139-computeFactorialOfN/app.js similarity index 100% rename from exercises/135-computeFactorialOfN/app.js rename to exercises/139-computeFactorialOfN/app.js diff --git a/exercises/135-computeFactorialOfN/solution.hide.js b/exercises/139-computeFactorialOfN/solution.hide.js similarity index 100% rename from exercises/135-computeFactorialOfN/solution.hide.js rename to exercises/139-computeFactorialOfN/solution.hide.js diff --git a/exercises/135-computeFactorialOfN/test.js b/exercises/139-computeFactorialOfN/test.js similarity index 100% rename from exercises/135-computeFactorialOfN/test.js rename to exercises/139-computeFactorialOfN/test.js diff --git a/exercises/136-sumDigits/README.es.md b/exercises/140-sumDigits/README.es.md similarity index 97% rename from exercises/136-sumDigits/README.es.md rename to exercises/140-sumDigits/README.es.md index 75120eed3..7a1e0b63a 100644 --- a/exercises/136-sumDigits/README.es.md +++ b/exercises/140-sumDigits/README.es.md @@ -1,4 +1,4 @@ -# `136` sumDigits +# `140` sumDigits ## 📝 Instrucciones: diff --git a/exercises/136-sumDigits/README.md b/exercises/140-sumDigits/README.md similarity index 97% rename from exercises/136-sumDigits/README.md rename to exercises/140-sumDigits/README.md index 499360b6d..97956f231 100644 --- a/exercises/136-sumDigits/README.md +++ b/exercises/140-sumDigits/README.md @@ -1,4 +1,4 @@ -# `136` sumDigits +# `140` sumDigits ## 📝 Instructions: diff --git a/exercises/136-sumDigits/app.js b/exercises/140-sumDigits/app.js similarity index 100% rename from exercises/136-sumDigits/app.js rename to exercises/140-sumDigits/app.js diff --git a/exercises/136-sumDigits/solution.hide.js b/exercises/140-sumDigits/solution.hide.js similarity index 100% rename from exercises/136-sumDigits/solution.hide.js rename to exercises/140-sumDigits/solution.hide.js diff --git a/exercises/136-sumDigits/test.js b/exercises/140-sumDigits/test.js similarity index 100% rename from exercises/136-sumDigits/test.js rename to exercises/140-sumDigits/test.js diff --git a/exercises/137-computeCompoundInterest/README.es.md b/exercises/141-computeCompoundInterest/README.es.md similarity index 94% rename from exercises/137-computeCompoundInterest/README.es.md rename to exercises/141-computeCompoundInterest/README.es.md index 968f25667..60d8ee795 100644 --- a/exercises/137-computeCompoundInterest/README.es.md +++ b/exercises/141-computeCompoundInterest/README.es.md @@ -1,4 +1,4 @@ -# `137` computeCompoundInterest +# `141` computeCompoundInterest ## 📝 Instrucciones: diff --git a/exercises/137-computeCompoundInterest/README.md b/exercises/141-computeCompoundInterest/README.md similarity index 94% rename from exercises/137-computeCompoundInterest/README.md rename to exercises/141-computeCompoundInterest/README.md index cdb65af0a..f26500d0f 100644 --- a/exercises/137-computeCompoundInterest/README.md +++ b/exercises/141-computeCompoundInterest/README.md @@ -1,4 +1,4 @@ -# `137` computeCompoundInterest +# `141` computeCompoundInterest ## 📝 Instructions: diff --git a/exercises/137-computeCompoundInterest/app.js b/exercises/141-computeCompoundInterest/app.js similarity index 100% rename from exercises/137-computeCompoundInterest/app.js rename to exercises/141-computeCompoundInterest/app.js diff --git a/exercises/137-computeCompoundInterest/solution.hide.js b/exercises/141-computeCompoundInterest/solution.hide.js similarity index 100% rename from exercises/137-computeCompoundInterest/solution.hide.js rename to exercises/141-computeCompoundInterest/solution.hide.js diff --git a/exercises/137-computeCompoundInterest/test.js b/exercises/141-computeCompoundInterest/test.js similarity index 100% rename from exercises/137-computeCompoundInterest/test.js rename to exercises/141-computeCompoundInterest/test.js diff --git a/exercises/138-modulo/README.es.md b/exercises/142-modulo/README.es.md similarity index 98% rename from exercises/138-modulo/README.es.md rename to exercises/142-modulo/README.es.md index 64ea43f33..793d0228e 100644 --- a/exercises/138-modulo/README.es.md +++ b/exercises/142-modulo/README.es.md @@ -1,4 +1,4 @@ -# `138` modulo +# `142` modulo ## 📝 Instrucciones: diff --git a/exercises/138-modulo/README.md b/exercises/142-modulo/README.md similarity index 97% rename from exercises/138-modulo/README.md rename to exercises/142-modulo/README.md index 5d0d376b2..4d30ce7dc 100644 --- a/exercises/138-modulo/README.md +++ b/exercises/142-modulo/README.md @@ -1,4 +1,4 @@ -# `138` modulo +# `142` modulo ## 📝 Instructions: diff --git a/exercises/138-modulo/app.js b/exercises/142-modulo/app.js similarity index 100% rename from exercises/138-modulo/app.js rename to exercises/142-modulo/app.js diff --git a/exercises/138-modulo/solution.hide.js b/exercises/142-modulo/solution.hide.js similarity index 100% rename from exercises/138-modulo/solution.hide.js rename to exercises/142-modulo/solution.hide.js diff --git a/exercises/138-modulo/test.js b/exercises/142-modulo/test.js similarity index 100% rename from exercises/138-modulo/test.js rename to exercises/142-modulo/test.js diff --git a/exercises/139-multiply/README.es.md b/exercises/143-multiply/README.es.md similarity index 94% rename from exercises/139-multiply/README.es.md rename to exercises/143-multiply/README.es.md index 0ed4303e7..c32a78f2d 100644 --- a/exercises/139-multiply/README.es.md +++ b/exercises/143-multiply/README.es.md @@ -1,4 +1,4 @@ -# `139` multiply +# `143` multiply ## 📝 Instrucciones: diff --git a/exercises/139-multiply/README.md b/exercises/143-multiply/README.md similarity index 93% rename from exercises/139-multiply/README.md rename to exercises/143-multiply/README.md index c189fab75..0dd8042b0 100644 --- a/exercises/139-multiply/README.md +++ b/exercises/143-multiply/README.md @@ -1,4 +1,4 @@ -# `139` multiply +# `143` multiply ## 📝 Instructions: diff --git a/exercises/139-multiply/app.js b/exercises/143-multiply/app.js similarity index 100% rename from exercises/139-multiply/app.js rename to exercises/143-multiply/app.js diff --git a/exercises/139-multiply/solution.hide.js b/exercises/143-multiply/solution.hide.js similarity index 100% rename from exercises/139-multiply/solution.hide.js rename to exercises/143-multiply/solution.hide.js diff --git a/exercises/139-multiply/test.js b/exercises/143-multiply/test.js similarity index 100% rename from exercises/139-multiply/test.js rename to exercises/143-multiply/test.js diff --git a/exercises/140-isOddWithoutModulo/README.es.md b/exercises/144-isOddWithoutModulo/README.es.md similarity index 93% rename from exercises/140-isOddWithoutModulo/README.es.md rename to exercises/144-isOddWithoutModulo/README.es.md index f7ed8ac4a..834bd7d5b 100644 --- a/exercises/140-isOddWithoutModulo/README.es.md +++ b/exercises/144-isOddWithoutModulo/README.es.md @@ -1,4 +1,4 @@ -# `140` isOddWithoutModulo +# `144` isOddWithoutModulo ## 📝 Instrucciones: diff --git a/exercises/140-isOddWithoutModulo/README.md b/exercises/144-isOddWithoutModulo/README.md similarity index 93% rename from exercises/140-isOddWithoutModulo/README.md rename to exercises/144-isOddWithoutModulo/README.md index 0ff6d1e4a..345d742b2 100644 --- a/exercises/140-isOddWithoutModulo/README.md +++ b/exercises/144-isOddWithoutModulo/README.md @@ -1,4 +1,4 @@ -# `140` isOddWithoutModulo +# `144` isOddWithoutModulo ## 📝 Instructions: diff --git a/exercises/140-isOddWithoutModulo/app.js b/exercises/144-isOddWithoutModulo/app.js similarity index 100% rename from exercises/140-isOddWithoutModulo/app.js rename to exercises/144-isOddWithoutModulo/app.js diff --git a/exercises/140-isOddWithoutModulo/solution.hide.js b/exercises/144-isOddWithoutModulo/solution.hide.js similarity index 100% rename from exercises/140-isOddWithoutModulo/solution.hide.js rename to exercises/144-isOddWithoutModulo/solution.hide.js diff --git a/exercises/140-isOddWithoutModulo/test.js b/exercises/144-isOddWithoutModulo/test.js similarity index 100% rename from exercises/140-isOddWithoutModulo/test.js rename to exercises/144-isOddWithoutModulo/test.js diff --git a/exercises/141-isEvenWithoutModulo/README.es.md b/exercises/145-isEvenWithoutModulo/README.es.md similarity index 92% rename from exercises/141-isEvenWithoutModulo/README.es.md rename to exercises/145-isEvenWithoutModulo/README.es.md index 6647f31b3..babe4c81a 100644 --- a/exercises/141-isEvenWithoutModulo/README.es.md +++ b/exercises/145-isEvenWithoutModulo/README.es.md @@ -1,4 +1,4 @@ -# `141` isEvenWithoutModulo +# `145` isEvenWithoutModulo ## 📝 Instrucciones: diff --git a/exercises/141-isEvenWithoutModulo/README.md b/exercises/145-isEvenWithoutModulo/README.md similarity index 92% rename from exercises/141-isEvenWithoutModulo/README.md rename to exercises/145-isEvenWithoutModulo/README.md index 426f64684..e350a272e 100644 --- a/exercises/141-isEvenWithoutModulo/README.md +++ b/exercises/145-isEvenWithoutModulo/README.md @@ -1,4 +1,4 @@ -# `141` isEvenWithoutModulo +# `145` isEvenWithoutModulo ## 📝 Instructions: diff --git a/exercises/141-isEvenWithoutModulo/app.js b/exercises/145-isEvenWithoutModulo/app.js similarity index 100% rename from exercises/141-isEvenWithoutModulo/app.js rename to exercises/145-isEvenWithoutModulo/app.js diff --git a/exercises/141-isEvenWithoutModulo/solution.hide.js b/exercises/145-isEvenWithoutModulo/solution.hide.js similarity index 100% rename from exercises/141-isEvenWithoutModulo/solution.hide.js rename to exercises/145-isEvenWithoutModulo/solution.hide.js diff --git a/exercises/141-isEvenWithoutModulo/test.js b/exercises/145-isEvenWithoutModulo/test.js similarity index 100% rename from exercises/141-isEvenWithoutModulo/test.js rename to exercises/145-isEvenWithoutModulo/test.js diff --git a/exercises/142.1-ArrayToObject/README.es.md b/exercises/146.1-ArrayToObject/README.es.md similarity index 97% rename from exercises/142.1-ArrayToObject/README.es.md rename to exercises/146.1-ArrayToObject/README.es.md index 61ced0346..5de903af7 100644 --- a/exercises/142.1-ArrayToObject/README.es.md +++ b/exercises/146.1-ArrayToObject/README.es.md @@ -1,4 +1,4 @@ -# `142.1` ArrayToObject +# `146.1` ArrayToObject ## 📝 Instrucciones: diff --git a/exercises/142.1-ArrayToObject/README.md b/exercises/146.1-ArrayToObject/README.md similarity index 97% rename from exercises/142.1-ArrayToObject/README.md rename to exercises/146.1-ArrayToObject/README.md index cb94a5fb9..cf6d5fb06 100644 --- a/exercises/142.1-ArrayToObject/README.md +++ b/exercises/146.1-ArrayToObject/README.md @@ -1,4 +1,4 @@ -# `142.1` ArrayToObject +# `146.1` ArrayToObject ## 📝 Instructions: diff --git a/exercises/142.1-ArrayToObject/app.js b/exercises/146.1-ArrayToObject/app.js similarity index 100% rename from exercises/142.1-ArrayToObject/app.js rename to exercises/146.1-ArrayToObject/app.js diff --git a/exercises/142.1-ArrayToObject/solution.hide.js b/exercises/146.1-ArrayToObject/solution.hide.js similarity index 100% rename from exercises/142.1-ArrayToObject/solution.hide.js rename to exercises/146.1-ArrayToObject/solution.hide.js diff --git a/exercises/142.1-ArrayToObject/test.js b/exercises/146.1-ArrayToObject/test.js similarity index 100% rename from exercises/142.1-ArrayToObject/test.js rename to exercises/146.1-ArrayToObject/test.js diff --git a/exercises/142.2-ArrayToObject/README.es.md b/exercises/146.2-ArrayToObject/README.es.md similarity index 96% rename from exercises/142.2-ArrayToObject/README.es.md rename to exercises/146.2-ArrayToObject/README.es.md index c9fe4ff80..99c1c18ca 100644 --- a/exercises/142.2-ArrayToObject/README.es.md +++ b/exercises/146.2-ArrayToObject/README.es.md @@ -1,4 +1,4 @@ -# `142.2` ArrayToObject +# `146.2` ArrayToObject ## 📝 Instrucciones: diff --git a/exercises/142.2-ArrayToObject/README.md b/exercises/146.2-ArrayToObject/README.md similarity index 96% rename from exercises/142.2-ArrayToObject/README.md rename to exercises/146.2-ArrayToObject/README.md index 96cac65fc..c88955a9c 100644 --- a/exercises/142.2-ArrayToObject/README.md +++ b/exercises/146.2-ArrayToObject/README.md @@ -1,4 +1,4 @@ -# `142.2` ArrayToObject +# `146.2` ArrayToObject ## 📝 Instructions: diff --git a/exercises/142.2-ArrayToObject/app.js b/exercises/146.2-ArrayToObject/app.js similarity index 100% rename from exercises/142.2-ArrayToObject/app.js rename to exercises/146.2-ArrayToObject/app.js diff --git a/exercises/142.2-ArrayToObject/solution.hide.js b/exercises/146.2-ArrayToObject/solution.hide.js similarity index 100% rename from exercises/142.2-ArrayToObject/solution.hide.js rename to exercises/146.2-ArrayToObject/solution.hide.js diff --git a/exercises/142.2-ArrayToObject/test.js b/exercises/146.2-ArrayToObject/test.js similarity index 100% rename from exercises/142.2-ArrayToObject/test.js rename to exercises/146.2-ArrayToObject/test.js diff --git a/exercises/142.3-ArrayToObject/README.es.md b/exercises/146.3-ArrayToObject/README.es.md similarity index 97% rename from exercises/142.3-ArrayToObject/README.es.md rename to exercises/146.3-ArrayToObject/README.es.md index af923fdfa..757718e85 100644 --- a/exercises/142.3-ArrayToObject/README.es.md +++ b/exercises/146.3-ArrayToObject/README.es.md @@ -1,4 +1,4 @@ -# `142.3` ArrayToObject +# `146.3` ArrayToObject ## 📝 Instrucciones: diff --git a/exercises/142.3-ArrayToObject/README.md b/exercises/146.3-ArrayToObject/README.md similarity index 97% rename from exercises/142.3-ArrayToObject/README.md rename to exercises/146.3-ArrayToObject/README.md index 9250a7ddb..421e4d217 100644 --- a/exercises/142.3-ArrayToObject/README.md +++ b/exercises/146.3-ArrayToObject/README.md @@ -1,4 +1,4 @@ -# `142.3` ArrayToObject +# `146.3` ArrayToObject ## 📝 Instructions: diff --git a/exercises/142.3-ArrayToObject/app.js b/exercises/146.3-ArrayToObject/app.js similarity index 100% rename from exercises/142.3-ArrayToObject/app.js rename to exercises/146.3-ArrayToObject/app.js diff --git a/exercises/142.3-ArrayToObject/solution.hide.js b/exercises/146.3-ArrayToObject/solution.hide.js similarity index 100% rename from exercises/142.3-ArrayToObject/solution.hide.js rename to exercises/146.3-ArrayToObject/solution.hide.js diff --git a/exercises/142.3-ArrayToObject/test.js b/exercises/146.3-ArrayToObject/test.js similarity index 100% rename from exercises/142.3-ArrayToObject/test.js rename to exercises/146.3-ArrayToObject/test.js diff --git a/exercises/143.1-ObjectToArray/README.es.md b/exercises/147.1-ObjectToArray/README.es.md similarity index 94% rename from exercises/143.1-ObjectToArray/README.es.md rename to exercises/147.1-ObjectToArray/README.es.md index c7c8f3378..5692f27f1 100644 --- a/exercises/143.1-ObjectToArray/README.es.md +++ b/exercises/147.1-ObjectToArray/README.es.md @@ -1,4 +1,4 @@ -# `143.1` ObjectToArray +# `147.1` ObjectToArray ## 📝 Instrucciones: diff --git a/exercises/143.1-ObjectToArray/README.md b/exercises/147.1-ObjectToArray/README.md similarity index 94% rename from exercises/143.1-ObjectToArray/README.md rename to exercises/147.1-ObjectToArray/README.md index 1b69c162f..252194ba6 100644 --- a/exercises/143.1-ObjectToArray/README.md +++ b/exercises/147.1-ObjectToArray/README.md @@ -1,4 +1,4 @@ -# `143.1` ObjectToArray +# `147.1` ObjectToArray ## 📝 Instructions: diff --git a/exercises/143.1-ObjectToArray/app.js b/exercises/147.1-ObjectToArray/app.js similarity index 100% rename from exercises/143.1-ObjectToArray/app.js rename to exercises/147.1-ObjectToArray/app.js diff --git a/exercises/143.1-ObjectToArray/solution.hide.js b/exercises/147.1-ObjectToArray/solution.hide.js similarity index 100% rename from exercises/143.1-ObjectToArray/solution.hide.js rename to exercises/147.1-ObjectToArray/solution.hide.js diff --git a/exercises/143.1-ObjectToArray/test.js b/exercises/147.1-ObjectToArray/test.js similarity index 100% rename from exercises/143.1-ObjectToArray/test.js rename to exercises/147.1-ObjectToArray/test.js diff --git a/exercises/143.2-ObjectToArray/README.es.md b/exercises/147.2-ObjectToArray/README.es.md similarity index 94% rename from exercises/143.2-ObjectToArray/README.es.md rename to exercises/147.2-ObjectToArray/README.es.md index 4c8fc8ed5..a22d3b207 100644 --- a/exercises/143.2-ObjectToArray/README.es.md +++ b/exercises/147.2-ObjectToArray/README.es.md @@ -1,4 +1,4 @@ -# `143.2` ObjectToArray +# `147.2` ObjectToArray ## 📝 Instrucciones: diff --git a/exercises/143.2-ObjectToArray/README.md b/exercises/147.2-ObjectToArray/README.md similarity index 94% rename from exercises/143.2-ObjectToArray/README.md rename to exercises/147.2-ObjectToArray/README.md index f285a8046..3b9485040 100644 --- a/exercises/143.2-ObjectToArray/README.md +++ b/exercises/147.2-ObjectToArray/README.md @@ -1,4 +1,4 @@ -# `143.2` ObjectToArray +# `147.2` ObjectToArray ## 📝 Instructions: diff --git a/exercises/143.2-ObjectToArray/app.js b/exercises/147.2-ObjectToArray/app.js similarity index 100% rename from exercises/143.2-ObjectToArray/app.js rename to exercises/147.2-ObjectToArray/app.js diff --git a/exercises/143.2-ObjectToArray/solution.hide.js b/exercises/147.2-ObjectToArray/solution.hide.js similarity index 100% rename from exercises/143.2-ObjectToArray/solution.hide.js rename to exercises/147.2-ObjectToArray/solution.hide.js diff --git a/exercises/143.2-ObjectToArray/test.js b/exercises/147.2-ObjectToArray/test.js similarity index 100% rename from exercises/143.2-ObjectToArray/test.js rename to exercises/147.2-ObjectToArray/test.js diff --git a/exercises/143.3-ObjectToArray/README.es.md b/exercises/147.3-ObjectToArray/README.es.md similarity index 95% rename from exercises/143.3-ObjectToArray/README.es.md rename to exercises/147.3-ObjectToArray/README.es.md index aaa2658c7..1d763ea1e 100644 --- a/exercises/143.3-ObjectToArray/README.es.md +++ b/exercises/147.3-ObjectToArray/README.es.md @@ -1,4 +1,4 @@ -# `143.3` ObjectToArray +# `147.3` ObjectToArray ## 📝 Instrucciones: diff --git a/exercises/143.3-ObjectToArray/README.md b/exercises/147.3-ObjectToArray/README.md similarity index 94% rename from exercises/143.3-ObjectToArray/README.md rename to exercises/147.3-ObjectToArray/README.md index 2808d1fab..570043cfa 100644 --- a/exercises/143.3-ObjectToArray/README.md +++ b/exercises/147.3-ObjectToArray/README.md @@ -1,4 +1,4 @@ -# `143.3` ObjectToArray +# `147.3` ObjectToArray ## 📝 Instructions: diff --git a/exercises/143.3-ObjectToArray/app.js b/exercises/147.3-ObjectToArray/app.js similarity index 100% rename from exercises/143.3-ObjectToArray/app.js rename to exercises/147.3-ObjectToArray/app.js diff --git a/exercises/143.3-ObjectToArray/solution.hide.js b/exercises/147.3-ObjectToArray/solution.hide.js similarity index 100% rename from exercises/143.3-ObjectToArray/solution.hide.js rename to exercises/147.3-ObjectToArray/solution.hide.js diff --git a/exercises/143.3-ObjectToArray/test.js b/exercises/147.3-ObjectToArray/test.js similarity index 100% rename from exercises/143.3-ObjectToArray/test.js rename to exercises/147.3-ObjectToArray/test.js diff --git a/exercises/144-getStringLength/README.es.md b/exercises/148-getStringLength/README.es.md similarity index 93% rename from exercises/144-getStringLength/README.es.md rename to exercises/148-getStringLength/README.es.md index 4cb619cb5..1b5d26bd6 100644 --- a/exercises/144-getStringLength/README.es.md +++ b/exercises/148-getStringLength/README.es.md @@ -1,4 +1,4 @@ -# `144` getStringLength +# `148` getStringLength ## 📝 Instrucciones: diff --git a/exercises/144-getStringLength/README.md b/exercises/148-getStringLength/README.md similarity index 93% rename from exercises/144-getStringLength/README.md rename to exercises/148-getStringLength/README.md index e3f289244..7640cef4c 100644 --- a/exercises/144-getStringLength/README.md +++ b/exercises/148-getStringLength/README.md @@ -1,4 +1,4 @@ -# `144` getStringLength +# `148` getStringLength ## 📝 Instructions: diff --git a/exercises/144-getStringLength/app.js b/exercises/148-getStringLength/app.js similarity index 100% rename from exercises/144-getStringLength/app.js rename to exercises/148-getStringLength/app.js diff --git a/exercises/144-getStringLength/solution.hide.js b/exercises/148-getStringLength/solution.hide.js similarity index 100% rename from exercises/144-getStringLength/solution.hide.js rename to exercises/148-getStringLength/solution.hide.js diff --git a/exercises/144-getStringLength/test.js b/exercises/148-getStringLength/test.js similarity index 100% rename from exercises/144-getStringLength/test.js rename to exercises/148-getStringLength/test.js diff --git a/exercises/145-GreetCustomers/README.es.md b/exercises/149-GreetCustomers/README.es.md similarity index 97% rename from exercises/145-GreetCustomers/README.es.md rename to exercises/149-GreetCustomers/README.es.md index bc2609c14..93f802fb9 100644 --- a/exercises/145-GreetCustomers/README.es.md +++ b/exercises/149-GreetCustomers/README.es.md @@ -1,4 +1,4 @@ -# `145` GreetCustomers +# `149` GreetCustomers ## 📝 Instrucciones: diff --git a/exercises/145-GreetCustomers/README.md b/exercises/149-GreetCustomers/README.md similarity index 97% rename from exercises/145-GreetCustomers/README.md rename to exercises/149-GreetCustomers/README.md index bd174eeb5..2dbcd2f3e 100644 --- a/exercises/145-GreetCustomers/README.md +++ b/exercises/149-GreetCustomers/README.md @@ -1,4 +1,4 @@ -# `145` GreetCustomers +# `149` GreetCustomers ## 📝 Instructions: diff --git a/exercises/145-GreetCustomers/app.js b/exercises/149-GreetCustomers/app.js similarity index 100% rename from exercises/145-GreetCustomers/app.js rename to exercises/149-GreetCustomers/app.js diff --git a/exercises/145-GreetCustomers/solution.hide.js b/exercises/149-GreetCustomers/solution.hide.js similarity index 100% rename from exercises/145-GreetCustomers/solution.hide.js rename to exercises/149-GreetCustomers/solution.hide.js diff --git a/exercises/145-GreetCustomers/test.js b/exercises/149-GreetCustomers/test.js similarity index 100% rename from exercises/145-GreetCustomers/test.js rename to exercises/149-GreetCustomers/test.js diff --git a/exercises/146-flipPairs/README.es.md b/exercises/150-flipPairs/README.es.md similarity index 96% rename from exercises/146-flipPairs/README.es.md rename to exercises/150-flipPairs/README.es.md index 6440c66f9..8c6d2f426 100644 --- a/exercises/146-flipPairs/README.es.md +++ b/exercises/150-flipPairs/README.es.md @@ -1,4 +1,4 @@ -# `146` flipPairs +# `150` flipPairs ## 📝 Instrucciones: diff --git a/exercises/146-flipPairs/README.md b/exercises/150-flipPairs/README.md similarity index 96% rename from exercises/146-flipPairs/README.md rename to exercises/150-flipPairs/README.md index dd4176617..4a8fbc3f4 100644 --- a/exercises/146-flipPairs/README.md +++ b/exercises/150-flipPairs/README.md @@ -1,4 +1,4 @@ -# `146` flipPairs +# `150` flipPairs ## 📝 Instructions: diff --git a/exercises/146-flipPairs/app.js b/exercises/150-flipPairs/app.js similarity index 100% rename from exercises/146-flipPairs/app.js rename to exercises/150-flipPairs/app.js diff --git a/exercises/146-flipPairs/solution.hide.js b/exercises/150-flipPairs/solution.hide.js similarity index 100% rename from exercises/146-flipPairs/solution.hide.js rename to exercises/150-flipPairs/solution.hide.js diff --git a/exercises/146-flipPairs/test.js b/exercises/150-flipPairs/test.js similarity index 100% rename from exercises/146-flipPairs/test.js rename to exercises/150-flipPairs/test.js diff --git a/exercises/147-flipEveryNChars/README.es.md b/exercises/151-flipEveryNChars/README.es.md similarity index 95% rename from exercises/147-flipEveryNChars/README.es.md rename to exercises/151-flipEveryNChars/README.es.md index 8f427d0f3..2ed2a6f26 100644 --- a/exercises/147-flipEveryNChars/README.es.md +++ b/exercises/151-flipEveryNChars/README.es.md @@ -1,4 +1,4 @@ -# `147` flipEveryNChars +# `151` flipEveryNChars ## 📝 Instrucciones: diff --git a/exercises/147-flipEveryNChars/README.md b/exercises/151-flipEveryNChars/README.md similarity index 95% rename from exercises/147-flipEveryNChars/README.md rename to exercises/151-flipEveryNChars/README.md index 1def9c539..e98df3d42 100644 --- a/exercises/147-flipEveryNChars/README.md +++ b/exercises/151-flipEveryNChars/README.md @@ -1,4 +1,4 @@ -# `147` flipEveryNChars +# `151` flipEveryNChars ## 📝 Instructions: diff --git a/exercises/147-flipEveryNChars/app.js b/exercises/151-flipEveryNChars/app.js similarity index 100% rename from exercises/147-flipEveryNChars/app.js rename to exercises/151-flipEveryNChars/app.js diff --git a/exercises/147-flipEveryNChars/solution.hide.js b/exercises/151-flipEveryNChars/solution.hide.js similarity index 100% rename from exercises/147-flipEveryNChars/solution.hide.js rename to exercises/151-flipEveryNChars/solution.hide.js diff --git a/exercises/147-flipEveryNChars/test.js b/exercises/151-flipEveryNChars/test.js similarity index 100% rename from exercises/147-flipEveryNChars/test.js rename to exercises/151-flipEveryNChars/test.js diff --git a/exercises/148-detectOutlierValue/README.es.md b/exercises/152-detectOutlierValue/README.es.md similarity index 95% rename from exercises/148-detectOutlierValue/README.es.md rename to exercises/152-detectOutlierValue/README.es.md index ac97e915f..0f1220de2 100644 --- a/exercises/148-detectOutlierValue/README.es.md +++ b/exercises/152-detectOutlierValue/README.es.md @@ -1,4 +1,4 @@ -# `148` detectOutlierValue +# `152` detectOutlierValue ## 📝 Instrucciones: diff --git a/exercises/148-detectOutlierValue/README.md b/exercises/152-detectOutlierValue/README.md similarity index 95% rename from exercises/148-detectOutlierValue/README.md rename to exercises/152-detectOutlierValue/README.md index 74d11d536..e58da0c57 100644 --- a/exercises/148-detectOutlierValue/README.md +++ b/exercises/152-detectOutlierValue/README.md @@ -1,4 +1,4 @@ -# `148` detectOutlierValue +# `152` detectOutlierValue ## 📝 Instructions: diff --git a/exercises/148-detectOutlierValue/app.js b/exercises/152-detectOutlierValue/app.js similarity index 100% rename from exercises/148-detectOutlierValue/app.js rename to exercises/152-detectOutlierValue/app.js diff --git a/exercises/148-detectOutlierValue/solution.hide.js b/exercises/152-detectOutlierValue/solution.hide.js similarity index 100% rename from exercises/148-detectOutlierValue/solution.hide.js rename to exercises/152-detectOutlierValue/solution.hide.js diff --git a/exercises/148-detectOutlierValue/test.js b/exercises/152-detectOutlierValue/test.js similarity index 100% rename from exercises/148-detectOutlierValue/test.js rename to exercises/152-detectOutlierValue/test.js diff --git a/exercises/149-findPairForSum/README.es.md b/exercises/153-findPairForSum/README.es.md similarity index 93% rename from exercises/149-findPairForSum/README.es.md rename to exercises/153-findPairForSum/README.es.md index af6744c77..68423c318 100644 --- a/exercises/149-findPairForSum/README.es.md +++ b/exercises/153-findPairForSum/README.es.md @@ -1,4 +1,4 @@ -# `149` findPairForSum +# `153` findPairForSum ## 📝 Instrucciones: diff --git a/exercises/149-findPairForSum/README.md b/exercises/153-findPairForSum/README.md similarity index 93% rename from exercises/149-findPairForSum/README.md rename to exercises/153-findPairForSum/README.md index 23bc4b50f..5c71dec65 100644 --- a/exercises/149-findPairForSum/README.md +++ b/exercises/153-findPairForSum/README.md @@ -1,4 +1,4 @@ -# `149` findPairForSum +# `153` findPairForSum ## 📝 Instructions: diff --git a/exercises/149-findPairForSum/app.js b/exercises/153-findPairForSum/app.js similarity index 100% rename from exercises/149-findPairForSum/app.js rename to exercises/153-findPairForSum/app.js diff --git a/exercises/149-findPairForSum/solution.hide.js b/exercises/153-findPairForSum/solution.hide.js similarity index 100% rename from exercises/149-findPairForSum/solution.hide.js rename to exercises/153-findPairForSum/solution.hide.js diff --git a/exercises/149-findPairForSum/test.js b/exercises/153-findPairForSum/test.js similarity index 100% rename from exercises/149-findPairForSum/test.js rename to exercises/153-findPairForSum/test.js diff --git a/exercises/150-isRotated/README.es.md b/exercises/154-isRotated/README.es.md similarity index 97% rename from exercises/150-isRotated/README.es.md rename to exercises/154-isRotated/README.es.md index d97c9c46a..2fc7505ed 100644 --- a/exercises/150-isRotated/README.es.md +++ b/exercises/154-isRotated/README.es.md @@ -1,4 +1,4 @@ -# `150` isRotated +# `154` isRotated Una rotación en un string se define como quitar el primer elemento y concatenarlo al final. Dado N y una matriz de N cadenas. Tu trabajo es predecir el mínimo número de rotaciones en los strings para que todos los strings sean iguales. diff --git a/exercises/150-isRotated/README.md b/exercises/154-isRotated/README.md similarity index 97% rename from exercises/150-isRotated/README.md rename to exercises/154-isRotated/README.md index 4c46329b9..0d3400921 100644 --- a/exercises/150-isRotated/README.md +++ b/exercises/154-isRotated/README.md @@ -1,4 +1,4 @@ -# `150` isRotated +# `154` isRotated A rotation on a string is defined as removing the first element and concatenating it at the end. Given N and an array of N strings. Your job is to predict the minimum number of rotations on the strings so as to make all the strings equal. diff --git a/exercises/150-isRotated/app.js b/exercises/154-isRotated/app.js similarity index 100% rename from exercises/150-isRotated/app.js rename to exercises/154-isRotated/app.js diff --git a/exercises/150-isRotated/solution.hide.js b/exercises/154-isRotated/solution.hide.js similarity index 100% rename from exercises/150-isRotated/solution.hide.js rename to exercises/154-isRotated/solution.hide.js diff --git a/exercises/150-isRotated/test.js b/exercises/154-isRotated/test.js similarity index 100% rename from exercises/150-isRotated/test.js rename to exercises/154-isRotated/test.js diff --git a/exercises/151-search/README.es.md b/exercises/155-search/README.es.md similarity index 98% rename from exercises/151-search/README.es.md rename to exercises/155-search/README.es.md index d0f820390..164c4c31d 100644 --- a/exercises/151-search/README.es.md +++ b/exercises/155-search/README.es.md @@ -1,4 +1,4 @@ -# `151` search +# `155` search Dado un array ordenado, como este: diff --git a/exercises/151-search/README.md b/exercises/155-search/README.md similarity index 98% rename from exercises/151-search/README.md rename to exercises/155-search/README.md index d981656fd..59b101efa 100644 --- a/exercises/151-search/README.md +++ b/exercises/155-search/README.md @@ -1,4 +1,4 @@ -# `151` search +# `155` search Given a sorted array, such as this: diff --git a/exercises/151-search/app.js b/exercises/155-search/app.js similarity index 100% rename from exercises/151-search/app.js rename to exercises/155-search/app.js diff --git a/exercises/151-search/solution.hide.js b/exercises/155-search/solution.hide.js similarity index 100% rename from exercises/151-search/solution.hide.js rename to exercises/155-search/solution.hide.js diff --git a/exercises/151-search/test.js b/exercises/155-search/test.js similarity index 100% rename from exercises/151-search/test.js rename to exercises/155-search/test.js diff --git a/exercises/152-isogram/README.es.md b/exercises/156-isogram/README.es.md similarity index 97% rename from exercises/152-isogram/README.es.md rename to exercises/156-isogram/README.es.md index 6493e0e83..5af24b09d 100644 --- a/exercises/152-isogram/README.es.md +++ b/exercises/156-isogram/README.es.md @@ -1,4 +1,4 @@ -# `152` isogram +# `156` isogram ## 📝 Instrucciones: diff --git a/exercises/152-isogram/README.md b/exercises/156-isogram/README.md similarity index 96% rename from exercises/152-isogram/README.md rename to exercises/156-isogram/README.md index 63b4c0b30..b35f27f46 100644 --- a/exercises/152-isogram/README.md +++ b/exercises/156-isogram/README.md @@ -1,4 +1,4 @@ -# `152` isogram +# `156` isogram ## 📝 Instructions: diff --git a/exercises/152-isogram/app.js b/exercises/156-isogram/app.js similarity index 100% rename from exercises/152-isogram/app.js rename to exercises/156-isogram/app.js diff --git a/exercises/152-isogram/solution.hide.js b/exercises/156-isogram/solution.hide.js similarity index 100% rename from exercises/152-isogram/solution.hide.js rename to exercises/156-isogram/solution.hide.js diff --git a/exercises/152-isogram/test.js b/exercises/156-isogram/test.js similarity index 100% rename from exercises/152-isogram/test.js rename to exercises/156-isogram/test.js diff --git a/exercises/153-phoneNumber/README.es.md b/exercises/157-phoneNumber/README.es.md similarity index 97% rename from exercises/153-phoneNumber/README.es.md rename to exercises/157-phoneNumber/README.es.md index acbae97e4..aa204d1b5 100644 --- a/exercises/153-phoneNumber/README.es.md +++ b/exercises/157-phoneNumber/README.es.md @@ -1,4 +1,4 @@ -# `153` phoneNumber +# `157` phoneNumber ## 📝 Instrucciones: diff --git a/exercises/153-phoneNumber/README.md b/exercises/157-phoneNumber/README.md similarity index 97% rename from exercises/153-phoneNumber/README.md rename to exercises/157-phoneNumber/README.md index d6d6db54e..845de066a 100644 --- a/exercises/153-phoneNumber/README.md +++ b/exercises/157-phoneNumber/README.md @@ -1,4 +1,4 @@ -# `153` phoneNumber +# `157` phoneNumber ## 📝 Instructions: diff --git a/exercises/153-phoneNumber/app.js b/exercises/157-phoneNumber/app.js similarity index 100% rename from exercises/153-phoneNumber/app.js rename to exercises/157-phoneNumber/app.js diff --git a/exercises/153-phoneNumber/solution.hide.js b/exercises/157-phoneNumber/solution.hide.js similarity index 100% rename from exercises/153-phoneNumber/solution.hide.js rename to exercises/157-phoneNumber/solution.hide.js diff --git a/exercises/153-phoneNumber/test.js b/exercises/157-phoneNumber/test.js similarity index 100% rename from exercises/153-phoneNumber/test.js rename to exercises/157-phoneNumber/test.js diff --git a/exercises/154-longestPalindrome/README.es.md b/exercises/158-longestPalindrome/README.es.md similarity index 97% rename from exercises/154-longestPalindrome/README.es.md rename to exercises/158-longestPalindrome/README.es.md index 0d8552fc9..bb9b915d8 100644 --- a/exercises/154-longestPalindrome/README.es.md +++ b/exercises/158-longestPalindrome/README.es.md @@ -1,4 +1,4 @@ -# `154` findLongestPalindrome +# `158` findLongestPalindrome Un Palíndromo es un texto que es igual si se lee de izquierda a derecha que de derecha a izquierda. Por ejemplo, en el string `My dad is a racecar athlete`, el palíndromo más largo es `a racecar a` (los espacios cuentan como caracteres válidos). Otros palíndromos en dicho string pueden ser 'dad', 'ete', ' dad ' (incluyendo los espacios a cada lado de la palabra ' dad '). diff --git a/exercises/154-longestPalindrome/README.md b/exercises/158-longestPalindrome/README.md similarity index 96% rename from exercises/154-longestPalindrome/README.md rename to exercises/158-longestPalindrome/README.md index 162c6869c..08910f5a8 100644 --- a/exercises/154-longestPalindrome/README.md +++ b/exercises/158-longestPalindrome/README.md @@ -1,4 +1,4 @@ -# `154` findLongestPalindrome +# `158` findLongestPalindrome A palindrome is a text that reads the same backward as forward. For example, in the string `My dad is a racecar athlete`, the longest palindrome is `a racecar a` (*whitespaces count as valid characters*). Other palindromes in the above string include 'dad', 'ete', ' dad ' (including the whitespace on each side of dad). diff --git a/exercises/154-longestPalindrome/app.js b/exercises/158-longestPalindrome/app.js similarity index 100% rename from exercises/154-longestPalindrome/app.js rename to exercises/158-longestPalindrome/app.js diff --git a/exercises/154-longestPalindrome/solution.hide.js b/exercises/158-longestPalindrome/solution.hide.js similarity index 100% rename from exercises/154-longestPalindrome/solution.hide.js rename to exercises/158-longestPalindrome/solution.hide.js diff --git a/exercises/154-longestPalindrome/test.js b/exercises/158-longestPalindrome/test.js similarity index 100% rename from exercises/154-longestPalindrome/test.js rename to exercises/158-longestPalindrome/test.js diff --git a/exercises/155.1-FashionInventory-A/README.es.md b/exercises/159.1-FashionInventory-A/README.es.md similarity index 97% rename from exercises/155.1-FashionInventory-A/README.es.md rename to exercises/159.1-FashionInventory-A/README.es.md index 7a279900c..961117f60 100644 --- a/exercises/155.1-FashionInventory-A/README.es.md +++ b/exercises/159.1-FashionInventory-A/README.es.md @@ -1,4 +1,4 @@ -# `155.1` FashionInventory-A +# `159.1` FashionInventory-A Tienes un catálogo de moda llamado `currentInventory` que corresponde a un inventario de artículos de varios diseñadores de alta costura. Cada diseñador tiene una línea de zapatos y cada zapato tiene un nombre y un precio. diff --git a/exercises/155.1-FashionInventory-A/README.md b/exercises/159.1-FashionInventory-A/README.md similarity index 97% rename from exercises/155.1-FashionInventory-A/README.md rename to exercises/159.1-FashionInventory-A/README.md index 725196a3e..a55c82472 100644 --- a/exercises/155.1-FashionInventory-A/README.md +++ b/exercises/159.1-FashionInventory-A/README.md @@ -1,4 +1,4 @@ -# `155.1` FashionInventory-A +# `159.1` FashionInventory-A You have a fashion catalog, an inventory of items from various high-fashion designers. Each designer has a lineup of shoes. Each shoe has a name and a price. diff --git a/exercises/155.1-FashionInventory-A/app.js b/exercises/159.1-FashionInventory-A/app.js similarity index 100% rename from exercises/155.1-FashionInventory-A/app.js rename to exercises/159.1-FashionInventory-A/app.js diff --git a/exercises/155.1-FashionInventory-A/solution.hide.js b/exercises/159.1-FashionInventory-A/solution.hide.js similarity index 100% rename from exercises/155.1-FashionInventory-A/solution.hide.js rename to exercises/159.1-FashionInventory-A/solution.hide.js diff --git a/exercises/155.1-FashionInventory-A/test.js b/exercises/159.1-FashionInventory-A/test.js similarity index 100% rename from exercises/155.1-FashionInventory-A/test.js rename to exercises/159.1-FashionInventory-A/test.js diff --git a/exercises/155.2-FashionInventory-B/README.es.md b/exercises/159.2-FashionInventory-B/README.es.md similarity index 98% rename from exercises/155.2-FashionInventory-B/README.es.md rename to exercises/159.2-FashionInventory-B/README.es.md index 61b67a756..c60938a35 100644 --- a/exercises/155.2-FashionInventory-B/README.es.md +++ b/exercises/159.2-FashionInventory-B/README.es.md @@ -1,4 +1,4 @@ -# `155.2` FashionInventory-B +# `159.2` FashionInventory-B Es la misma estructura de datos de inventario que antes, tienes un catálogo de moda llamado `currentInventory` que corresponde a un inventario de artículos de varios diseñadores de alta costura. Cada diseñador tiene una línea de zapatos y cada zapato tiene un nombre y un precio. diff --git a/exercises/155.2-FashionInventory-B/README.md b/exercises/159.2-FashionInventory-B/README.md similarity index 98% rename from exercises/155.2-FashionInventory-B/README.md rename to exercises/159.2-FashionInventory-B/README.md index 49e6368e9..86f815a7d 100644 --- a/exercises/155.2-FashionInventory-B/README.md +++ b/exercises/159.2-FashionInventory-B/README.md @@ -1,4 +1,4 @@ -# `155.2` FashionInventory-B +# `159.2` FashionInventory-B It's the same inventory data structure as before, you have a fashion catalog, an inventory `currentInventory` with items from various high-fashion designers. Each designer has a lineup of shoes, and each shoe has a name and price. diff --git a/exercises/155.2-FashionInventory-B/app.js b/exercises/159.2-FashionInventory-B/app.js similarity index 100% rename from exercises/155.2-FashionInventory-B/app.js rename to exercises/159.2-FashionInventory-B/app.js diff --git a/exercises/155.2-FashionInventory-B/solution.hide.js b/exercises/159.2-FashionInventory-B/solution.hide.js similarity index 100% rename from exercises/155.2-FashionInventory-B/solution.hide.js rename to exercises/159.2-FashionInventory-B/solution.hide.js diff --git a/exercises/155.2-FashionInventory-B/test.js b/exercises/159.2-FashionInventory-B/test.js similarity index 100% rename from exercises/155.2-FashionInventory-B/test.js rename to exercises/159.2-FashionInventory-B/test.js diff --git a/exercises/155.3-FashionInventory-C/README.es.md b/exercises/159.3-FashionInventory-C/README.es.md similarity index 98% rename from exercises/155.3-FashionInventory-C/README.es.md rename to exercises/159.3-FashionInventory-C/README.es.md index b7ec32f65..06d5d35de 100644 --- a/exercises/155.3-FashionInventory-C/README.es.md +++ b/exercises/159.3-FashionInventory-C/README.es.md @@ -1,4 +1,4 @@ -# `155.3` FashionInventory-C +# `159.3` FashionInventory-C Es la misma estructura de datos del inventario `currentInventory` de antes, pero ahora debes encontrar todos los zapatos negros (con el string `black`). diff --git a/exercises/155.3-FashionInventory-C/README.md b/exercises/159.3-FashionInventory-C/README.md similarity index 98% rename from exercises/155.3-FashionInventory-C/README.md rename to exercises/159.3-FashionInventory-C/README.md index 4ba0b2260..44ac44b1d 100644 --- a/exercises/155.3-FashionInventory-C/README.md +++ b/exercises/159.3-FashionInventory-C/README.md @@ -1,4 +1,4 @@ -# `155.3` FashionInventory-C +# `159.3` FashionInventory-C You have a fashion catalog, a `currentInventory` of items from various high fashion designers. Each designer has a lineup of shoes, and each shoe has a name and a price. diff --git a/exercises/155.3-FashionInventory-C/app.js b/exercises/159.3-FashionInventory-C/app.js similarity index 100% rename from exercises/155.3-FashionInventory-C/app.js rename to exercises/159.3-FashionInventory-C/app.js diff --git a/exercises/155.3-FashionInventory-C/solution.hide.js b/exercises/159.3-FashionInventory-C/solution.hide.js similarity index 100% rename from exercises/155.3-FashionInventory-C/solution.hide.js rename to exercises/159.3-FashionInventory-C/solution.hide.js diff --git a/exercises/155.3-FashionInventory-C/test.js b/exercises/159.3-FashionInventory-C/test.js similarity index 100% rename from exercises/155.3-FashionInventory-C/test.js rename to exercises/159.3-FashionInventory-C/test.js diff --git a/exercises/155.4-FashionInventory-D/README.es.md b/exercises/159.4-FashionInventory-D/README.es.md similarity index 98% rename from exercises/155.4-FashionInventory-D/README.es.md rename to exercises/159.4-FashionInventory-D/README.es.md index 092881401..d6e9ab601 100644 --- a/exercises/155.4-FashionInventory-D/README.es.md +++ b/exercises/159.4-FashionInventory-D/README.es.md @@ -1,4 +1,4 @@ -# `155.4` FashionInventory-D +# `159.4` FashionInventory-D Esta es una variación del problema del "Fashion Inventory". diff --git a/exercises/155.4-FashionInventory-D/README.md b/exercises/159.4-FashionInventory-D/README.md similarity index 98% rename from exercises/155.4-FashionInventory-D/README.md rename to exercises/159.4-FashionInventory-D/README.md index d5d506d38..e66455715 100644 --- a/exercises/155.4-FashionInventory-D/README.md +++ b/exercises/159.4-FashionInventory-D/README.md @@ -1,4 +1,4 @@ -# `155.4` FashionInventory-D +# `159.4` FashionInventory-D You have a fashion catalog, an inventory of items from various high-fashion designers. diff --git a/exercises/155.4-FashionInventory-D/app.js b/exercises/159.4-FashionInventory-D/app.js similarity index 100% rename from exercises/155.4-FashionInventory-D/app.js rename to exercises/159.4-FashionInventory-D/app.js diff --git a/exercises/155.4-FashionInventory-D/solution.hide.js b/exercises/159.4-FashionInventory-D/solution.hide.js similarity index 100% rename from exercises/155.4-FashionInventory-D/solution.hide.js rename to exercises/159.4-FashionInventory-D/solution.hide.js diff --git a/exercises/155.4-FashionInventory-D/test.js b/exercises/159.4-FashionInventory-D/test.js similarity index 100% rename from exercises/155.4-FashionInventory-D/test.js rename to exercises/159.4-FashionInventory-D/test.js