Skip to content

Commit d4599e9

Browse files
Merge pull request 4GeeksAcademy#43 from ElviraQDP/layout
learnpack/learnpack#527
2 parents 822f5ef + 752c250 commit d4599e9

File tree

13 files changed

+22
-38
lines changed

13 files changed

+22
-38
lines changed

exercises/12-Rand-From-One-to-Six/README.es.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# `14` Números aleatorios del 1 a 12
2-
1+
# `12` Números aleatorios del 1 a 12
32

43
## 📝 Instrucciones:
54

exercises/12-Rand-From-One-to-Six/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tutorial: "https://www.youtube.com/watch?v=EdyMlVlNUT0"
33
---
44

5-
# `14` Rand From 1 to 12
5+
# `12` Rand From 1 to 12
66

77
## 📝 Instructions:
88

exercises/13-Create-A-For-Loop/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `16` Crear un bucle (loop) For
1+
# `13` Crear un bucle (loop) For
22

33
Los bucles o loops son muy útiles, no tienes que repetir código escribiendo las mismas líneas muchas veces.
44

exercises/13-Create-A-For-Loop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tutorial: "https://www.youtube.com/watch?v=-HQtwsBnbMQ"
33
---
44

5-
# `16` Create A For Loop
5+
# `13` Create A For Loop
66

77
Loops are very useful, you don't have to repeat yourself by writing the same lines many times.
88

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# `14` Tu primer bucle o loop
22

3-
Si ejecutas este código verás una cuenta de 0 a 9 (caracteres blancos).
4-
5-
1. Corrígelo para que cuente hasta 11,verás 101 en verde después.
3+
## Instrucciones:
64

5+
Si ejecutas este código verás una cuenta de 0 a 9 (caracteres blancos).
76

8-
**¿Puedes corregirlo?**
7+
1. Corrígelo para que cuente hasta 11, verás 101 en verde después ¿Puedes?
98

10-
### :mag_right: Important:
9+
## 🔎 Important:
1110

12-
Hay una serie de ejercicios dedicados a listas y bucles o loops, te invitamos a realizar [esos](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises) primero antes de continuar con el siguiente ejercicio.
11+
+ Hay una serie de ejercicios dedicados a listas y bucles o loops, te invitamos a realizar [esos](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises) primero antes de continuar con el siguiente ejercicio.
1312

14-
¡Y luego, regresa! :smiley.
13+
¡Y luego, regresa! 😊

exercises/14-Your-First-Loop/README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@ tutorial: "https://www.youtube.com/watch?v=30sizcnVdGg"
66

77
If you run this code you'll see a count from 0 to 9 (White characters).
88

9-
1. Fix it so that it counts up to 11, you'll see 101 on green afterwards.
9+
1. Fix it so that it counts up to 11, you'll see 101 on green afterwards. Can you?
1010

11-
12-
**Can you fix it?**
13-
14-
15-
### :mag_right: Important:
11+
## 🔎 Important:
1612

1713
There's a series of exercises dedicated to Lists and Loops, we encourage you to go and finish [those](https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises) after this exercise. (
1814

19-
And then, come back! :smiley:).
15+
And then, come back! 😊

exercises/15-Looping-With-FizzBuzz/README.es.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
Esta es una típica prueba de principiante que es exigida para las entrevistas en Google, Facebook y las demás grandes compañías de tecnología.
44

5-
65
## 📝 Instrucciones:
76

87
1. Escribe el código necesario para imprimer en la consola todos los números del 1 al 100:

exercises/15-Looping-With-FizzBuzz/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ tutorial: "https://www.youtube.com/watch?v=fw3ukgmlSwQ"
66

77
This is a typical beginner test that is required to complete interviews in Google, Facebook and all the other big tech unicorns.
88

9-
109
## 📝 Instructions:
1110

1211
1. Write the code needed to print in the console all the numbers from 1 to 100:
@@ -17,7 +16,6 @@ This is a typical beginner test that is required to complete interviews in Googl
1716

1817
+ For numbers which are multiples of both 3 and 5, print "FizzBuzz".
1918

20-
2119
## Expected result:
2220

2321
```py

exercises/17-Russian-Roulette/README.es.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ gira la cámara del revolver para hacer aleatorio el juego. Nadie sabrá dónde
77

88
¡¡¡FUEGO!!!....... ¿has muerto?
99

10-
1110
## 📝 Instrucciones:
1211

1312
1. El juego casi funciona, por favor completa la función `fire_gun` para hacer que el juego funcione
1413
(compara la posición de la bala contra la posición de la cámara.)
1514

16-
1715
## 💡 Pista:
1816

1917
- La función necesita devolver `You are dead!` (Estás muerto) o `Keep playing!` (Sigue jugando) dependiendo del resultado, si la bala está en la misma recámara que la del revolver, entonces fue disparada (You are dead!).

exercises/17-Russian-Roulette/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ spin the revolver chamber to make the game random, nobody knows the bullet posit
77

88
FIRE!!!....... are you dead?
99

10-
1110
## 📝 Instructions:
1211

1312
1. The game is almost working, please fill the function `fire_gun` to make the game work
1413
(compare the bullet position against the chamber position.)
1514

16-
1715
## 💡 Hint:
1816

1917
- The function needs to return `You are dead!` or `Keep playing!` depending on the result.

exercises/18-The-Beatles/README.es.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@ Este es el coro de una de las canciones más famosas de la banda:
1414

1515
1. Crea una función llamada `sing()`
1616

17-
2. La función necesita **print** (usa el método `print()` y no `return`) un texto con la misma letra
18-
[que puedes escuchar desde el segundo 3:10 hasta el final de la canción en el segundo 3:54](https://www.youtube.com/watch?v=QDYfEBY9NM4)..
17+
2. La función necesita **print** (usa el método `print()` y no `return`) un texto con la misma letra [que puedes escuchar desde el segundo 3:10 hasta el final de la canción en el segundo 3:54](https://www.youtube.com/watch?v=QDYfEBY9NM4)..
1918

20-
## Resultado esperado:
21-
22-
`let it be, let it be, let it be, let it be, whisper words of wisdom, let it be, let it be, let it be, let it be, let it be, there will be an answer, let it be`
19+
## 💡 Pista:
2320

21+
- La frase "let it be" se repite todo el tiempo. Probablemente deberías usar un bucle o loop para eso 😊
2422

25-
## 💡 Pista:
23+
## Resultado esperado:
2624

27-
- La frase "let it be" se repite todo el tiempo. Probablemente deberías usar un bucle o loop para eso :smiley:
25+
`let it be, let it be, let it be, let it be, whisper words of wisdom, let it be, let it be, let it be, let it be, let it be, there will be an answer, let it be`

exercises/18-The-Beatles/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ This is the chorus of one of the most famous Beatle songs:
2121
2. The function needs to **print** (use the `print` statement and not `return`) a string with the exact same lyrics
2222
[you can hear from the 3:10 sec to the end of the song at 3:54 sec](https://www.youtube.com/watch?v=QDYfEBY9NM4).
2323

24+
## 💡 Hint:
25+
26+
- The words "let it be" repeat all the time, you should probably create a loop for that.
2427

2528
## Expected output:
2629

2730
`let it be, let it be, let it be, let it be, whisper words of wisdom, let it be, let it be, let it be, let it be, let it be, there will be an answer, let it be`
2831

29-
## 💡 Hint:
30-
31-
- The words "let it be" repeat all the time, you should probably create a loop for that.

exercises/19-Bottles-Of-Milk/README.es.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@
33
¿Has escuchado la canción sobre las 99 botellas de leche? Es una gran canción, para nada aburrida...
44
Aquí puedes escucharla: https://www.youtube.com/watch?v=Xy-da43E6Lo
55

6-
76
## 📝 Instrucciones:
87

98
1. Por favor, declara una función llamada `number_of_bottles()`.
109

1110
2. La función necesita **print** para imprimir la letra exacta de la canción (usa el método `print()` y no `return`).
1211

13-
## :bulb: Pista:
12+
## 💡 Pista:
1413

1514
- Al final de la canción, la letra cambia porque es solo una botella (singular en lugar del plural).
1615

0 commit comments

Comments
 (0)