From e84cda90f98ca8d507eadf822ec54d708b6a2a52 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Thu, 8 Sep 2022 13:13:07 +0100 Subject: [PATCH] style(shoppinglistsort): formatting --- subjects/shoppinglistsort/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/shoppinglistsort/README.md b/subjects/shoppinglistsort/README.md index 832a7215..7c46f2d0 100644 --- a/subjects/shoppinglistsort/README.md +++ b/subjects/shoppinglistsort/README.md @@ -1,10 +1,10 @@ -# shoppinglistsort +## shoppinglistsort ### Instructions You were sent to the supermarket with a shopping list. To make your shopping faster, write a function `ShoppingListSort()` that takes an array of strings and sorts it, according to the string length, returning an array in which the strings appear in ascending order. -In the case of equal string length the order does not matter. +When the length of string elements are equal, then the order in which they appear does not matter. ### Expected function