docs(shoppinglistsort): fix instructions

This commit is contained in:
Tiago Collot 2022-10-31 16:42:30 +00:00
parent 43129a46ca
commit c0792d627f
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
You were sent to the supermarket with a shopping list. To make your shopping faster, write a function `ShoppingListSort()` that takes a slice of strings and sorts it, according to the string length, returning a slice in which the strings appear in ascending order.
- The length of the strings cannot repeat itself.
- Strings within the input slice must be of different lengths.
### Expected function