diff --git a/exercises/08-Delete_element/README.es.md b/exercises/08-Delete_element/README.es.md index f96a25e4..9fb0f055 100644 --- a/exercises/08-Delete_element/README.es.md +++ b/exercises/08-Delete_element/README.es.md @@ -5,6 +5,7 @@ La única forma de borrar a `Daniella` de la lista (sin trampas) sería crear un ## 📝 Instrucciones: 1. Por favor, crea una función `delete_person` que elimine a una persona dada de una lista y devuelva una nueva lista sin esa persona. +2. Aunque hay diferentes formas de conseguir el resultado esperado, en este ejercicio queremos que iteres con el bucle `for`. ## 💻 Resultado esperado: diff --git a/exercises/08-Delete_element/README.md b/exercises/08-Delete_element/README.md index d3da0ed5..e6d9e5de 100644 --- a/exercises/08-Delete_element/README.md +++ b/exercises/08-Delete_element/README.md @@ -5,6 +5,7 @@ The only way to delete `Daniella` from the list (without cheating) would be to c ## 📝 Instructions: 1. Please create a `delete_person` function that deletes any given person from the list and returns a new list without that person. +2. Although there are different ways to achieve the expected result in this exercise we want you to iterate using a `for` loop. ## 💻 Expected result: