Rephrase instructions of exercise `split`

This commit is contained in:
Augusto 2021-06-07 16:35:41 +01:00
parent 0dc5d03516
commit 9e97040d79
1 changed files with 1 additions and 3 deletions

View File

@ -2,9 +2,7 @@
### Instructions
Write a function that separates the words of a `string` and puts them in a `string` slice.
The separators are the characters of the separator string given in parameter.
Write a function that receives a string and a separator and returns a `slice of strings` that results of splitting the string `s` by the separator `sep`.
### Expected function