Skip to content

Commit 01655ac

Browse files
authored
Merge pull request #143 from Charlytoc/master
ADd vidoes, change learnpack version
2 parents 0724db6 + 6155002 commit 01655ac

File tree

39 files changed

+90
-21
lines changed

39 files changed

+90
-21
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2323
// "forwardPorts": [],
2424

25-
"onCreateCommand": "npm i jest@24.8.0 -g && npm i @learnpack/learnpack@2.1.20 -g && learnpack plugins:install @learnpack/node@1.1.1"
25+
"onCreateCommand": "npm i jest@24.8.0 -g && npm i @learnpack/learnpack@2.1.35 -g && learnpack plugins:install @learnpack/node@1.1.1"
2626

2727
// Use 'postCreateCommand' to run commands after the container is created.
2828
// "postCreateCommand": "yarn install",

.learn/assets/exercises-menu.png

34 KB
Loading

exercises/00-Welcome/README.es.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
intro: https://www.youtube.com/watch?v=ooHdelGf0gI
2+
intro: https://www.youtube.com/watch?v=mt_5rrboN9g
33
---
44

55

exercises/00-Welcome/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
intro: https://www.youtube.com/watch?v=ooHdelGf0gI
2+
intro: https://www.youtube.com/watch?v=ESH3EvnT334
33
---
44

55

exercises/01-Hello_World/README.es.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=cS17qUHA9qA"
3+
---
4+
5+
16
# `01` Hello World
27

38
En JavaScript, usamos `console.log()` para hacer que la computadora escriba lo que queramos (el contenido de una variable, una cadena de caracteres, etc.) en algo llamado **la consola**.

exercises/01-Hello_World/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=miBzmGgMIbU
2+
tutorial: https://www.youtube.com/watch?v=StAW-GzXr4c
33
---
44

55
# `01` Hello World

exercises/02.1-Access_and_retrieve/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=4g7YNL-XY3k"
3+
---
4+
15
# `02.1` Access and Retrieve
26

37
Los arrays son parte de todo lenguaje de programación. Son el camino a seguir cuando quieres tener una "lista de elementos".

exercises/02.1-Access_and_retrieve/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=9-yAzjsWXtU
2+
tutorial: https://www.youtube.com/watch?v=WMGuBMTplz0
33
---
44

55
# `02.1` Access and Retrieve

exercises/02.2-Retrieve_Items/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=hrPTP7jEehc"
3+
---
4+
15
# `02.2` Retrieve Items
26

37
La única forma de acceder a un elemento particular en un arreglo es usando el índice. El **índice (index)** es un número entero que representa la posición a la que desea acceder en el arreglo.

exercises/02.2-Retrieve_Items/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=rWYIgofIAME
2+
tutorial: https://www.youtube.com/watch?v=zLxhyS5jwU0
33
---
44

55
# `02.2` Retrieve Items

exercises/03-Print_the_last_one/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=tXRPJhUmQXA"
3+
---
4+
15
# `03` Print the last one
26

37
Nunca sabrás cuántos elementos tiene `myStupidArray` porque se genera aleatoriamente durante el tiempo de ejecución utilizando la función `generateRandomArray`.

exercises/03-Print_the_last_one/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=d-CnlwX6x1A
2+
tutorial: https://www.youtube.com/watch?v=EPDVu6IlrPA
33
---
44

55
# `03` Print the last one

exercises/04.1-Loop_from_one_to_seventeen/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=eoq11v_bPR4"
3+
---
4+
15
# `04.1` Loop from one to seventeen
26

37
El loop (bucle) actual se repite del cero a diez.

exercises/04.1-Loop_from_one_to_seventeen/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=4QGaROXZ3oc
2+
tutorial: https://www.youtube.com/watch?v=gfuqZ-wi4BY
33
---
44

55
# `04.1` Loop from one to seventeen

exercises/04.2-Loop_from_seven_to_twelve/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=L7ppJjHpr20"
3+
---
4+
15
# `04.2` Loop from seven to twelve
26

37
## 📝 Instrucciones:

exercises/04.2-Loop_from_seven_to_twelve/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=6eLXV_IL2m0
2+
tutorial: https://www.youtube.com/watch?v=QqzPOSJwY40
33
---
44

55
# `04.2` Loop from seven to twelve

exercises/04.3-Add_items_to_array/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=IEev17h1KD8"
3+
---
4+
15
# `04.3` Add Items to Array
26

37
## 📝 Instrucciones:

exercises/04.3-Add_items_to_array/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=no9mCu-tvaM
2+
tutorial: https://www.youtube.com/watch?v=LMOIly1JTes
33
---
44

55
# `04.3` Add Items to Array

exercises/04.4-Add_items_to_array_looping/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=iy4ej5Leu6M"
3+
---
4+
15
# `04.4` Loop and add items to array by looping
26

37
## 📝 Instrucciones:

exercises/04.4-Add_items_to_array_looping/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=QLnkSPNTgNo
2+
tutorial: https://www.youtube.com/watch?v=NakXM50fSsQ
33
---
44

55
# `04.4` Loop and add items to array by looping

exercises/05.1-Loop_Array/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=7X-UZ6TUXc4"
3+
---
4+
15
# `05.1` Loop an array
26

37
Ok, esta es la primera vez que vas a recorrer un array desde cero.

exercises/05.1-Loop_Array/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=Dd2uXOwhTzY
2+
tutorial: https://www.youtube.com/watch?v=5erdsiEeN8g
33
---
44

55
# `05.1` Loop an array

exercises/06.2-Loop-from-the-top/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=FGDubZafSaQ"
3+
---
4+
15
# `06.2` Loop from the top
26

37
Este loop o bucle está haciendo un bucle al arreglo o array de principio a fin ... aumentando uno por uno.

exercises/06.2-Loop-from-the-top/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=IX2m3SWq7tg
2+
tutorial: https://www.youtube.com/watch?v=5DtRgECA-oc
33
---
44

55
# `06.2` Loop from the top

exercises/06.3-Loop-adding-two/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=PuTj4DriZAE"
3+
---
4+
15
# `06.3` Loop every two positions
26

37
Este código está recorriendo todo el array uno por uno, imprimiendo cada elemento en la consola.

exercises/06.3-Loop-adding-two/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=VpXGQbY6UFs
2+
tutorial: https://www.youtube.com/watch?v=853TOYOheko
33
---
44

55
# `06.3` Loop every two positions

exercises/06.4-Loop-from-the-half-to-the-end/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=IHfENJ8-4hU"
3+
---
4+
15
# `06.4` Loop from half to the end
26

37
Este bucle (loop) no está recorriendo el arreglo porque las variables `initialValue`, `stopValue` y `increasingValue` son iguales a cero `0`.

exercises/06.4-Loop-from-the-half-to-the-end/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=rZp3TrD8tto
2+
tutorial: https://www.youtube.com/watch?v=ijc1WInpvxk
33
---
44

55
# `06.4` Loop from half to the end

exercises/06.5-One-last-looping/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=R76cFWomAMY"
3+
---
4+
15
# `06.5` One Last Looping
26

37
## 📝 Instrucciones:

exercises/06.5-One-last-looping/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=IwDDj6wN4jY
2+
tutorial: https://www.youtube.com/watch?v=XzYWBO4Lqrw
33
---
44

55
# `06.5` One Last Looping

exercises/07.1-Finding-Waldo/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=-8Zv64r0ZsE"
3+
---
4+
15
# `07.1` Finding Waldo 😄
26
![Finding Waldo](../../.learn/assets/finding_waldo.jpeg)
37

exercises/07.1-Finding-Waldo/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=5WphKLyEJaU
2+
tutorial: https://www.youtube.com/watch?v=fSuIrbBBhQE
33
---
44

55
# `07.1` Finding Waldo 😄

exercises/07.2-Letter-Counter/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=Nq3Db1J6oqE"
3+
---
4+
15
# `07.2` Letter Counter
26

37
Nuestro cliente necesita un programa que cuente las repeticiones de las letras en un string dado. Sé que es extraño, pero es muy testarudo ¡Lo necesitamos lo antes posible!

exercises/07.2-Letter-Counter/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=oLTidCuisew
2+
tutorial: https://www.youtube.com/watch?v=EJ30JRZ_5II
33
---
44

55
# `07.2` Letter Counter

exercises/07.3-Flip-Array/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=zsBAuElOR2g"
3+
---
4+
15
# `07.3` Flip Array
26

37
## 📝 Instrucciones:

exercises/07.3-Flip-Array/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=Snn7OtZY370
2+
tutorial: https://www.youtube.com/watch?v=XER3eoFXZbg
33
---
44

55
# `07.3` Flip Array

exercises/08.1-Mixed-array/README.es.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=q0iQciYmxsk"
3+
---
4+
15
# `08.1` Mixed Array
26

37
## 📝 Instrucciones:

exercises/08.1-Mixed-array/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tutorial: https://www.youtube.com/watch?v=3o02odJhieo
2+
tutorial: https://www.youtube.com/watch?v=Vli4sOwYUaI
33
---
44

55
# `08.1` Mixed Array

learn.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"graded": true,
2020

2121
"editor": {
22-
"version": "1.0.73"
22+
"version": "3.1.19"
2323
}
2424

2525
}

0 commit comments

Comments
 (0)