From c0792d627f092dea3e58780947abe3e4d8beff58 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Mon, 31 Oct 2022 16:42:30 +0000 Subject: [PATCH] docs(shoppinglistsort): fix instructions --- subjects/shoppinglistsort/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/shoppinglistsort/README.md b/subjects/shoppinglistsort/README.md index 4b114421..9c98f202 100644 --- a/subjects/shoppinglistsort/README.md +++ b/subjects/shoppinglistsort/README.md @@ -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