Skip to content

https://github.com/learnpack/learnpack/issues/722 #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update README.es.md
  • Loading branch information
tommygonzaleza authored Mar 14, 2022
commit c57204067b72479dc5d4d2ffdba2fa996a6e242e
6 changes: 3 additions & 3 deletions exercises/026-sequence-of-words/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

## 📝 Instrucciones:

1. Escribe una función `sequence_of_words()`. que reciba una secuencia separada por comas como entrada e imprima las palabras en una secuencia separada por comas después de ordenarlas alfabéticamente.
1. Escribe una función `sequence_of_words()`. que reciba una lista de palabras y las retorne en un string separadas por comas después de ordenarlas alfabéticamente.

## Ejemplo de entrada:

```py
sequence_of_words(without,hello,bag,world)
sequence_of_words("without","hello","bag","world")
```
## Ejemplo de salida:

+ bag,hello,without,world
+ "bag, hello, without, world"

## 💡 Pistas:

Expand Down