From 287f7d88b76bed7137e29bfabd51a6ec7dd2f18f Mon Sep 17 00:00:00 2001 From: Corey McCandless Date: Sun, 23 May 2021 17:05:14 -0400 Subject: [PATCH] clarify sorted_names hint --- exercises/concept/chaitanas-colossal-coaster/.docs/hints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/chaitanas-colossal-coaster/.docs/hints.md b/exercises/concept/chaitanas-colossal-coaster/.docs/hints.md index a77db13a..43ce3df4 100644 --- a/exercises/concept/chaitanas-colossal-coaster/.docs/hints.md +++ b/exercises/concept/chaitanas-colossal-coaster/.docs/hints.md @@ -29,5 +29,5 @@ Make sure you have a good understanding of how to create and manipulate lists. ## 7. Sort the Queue List -- You need to `sort` the queue and return the sorted list. +- You need to `copy` the queue, `sort` it, and return the sorted copy. - The order is alphabetical, hence it should be sorted in ascending order.