Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions exercises/08-Delete_element/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
1 change: 1 addition & 0 deletions exercises/08-Delete_element/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down