Skip to content

Commit 37ea725

Browse files
committed
https://github.com/learnpack/learnpack/issues/527
1 parent 9e64e1f commit 37ea725

File tree

13 files changed

+20
-33
lines changed

13 files changed

+20
-33
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.

0 commit comments

Comments
 (0)