From da98953124087ea158c73c63de878370c5aa08a6 Mon Sep 17 00:00:00 2001 From: Charles Ross Date: Thu, 14 Nov 2024 17:30:29 -0800 Subject: [PATCH] Update instructions.md Perhaps it was a typo but 4 is not the average of the list, nor the average of the first and last, while 5 is. So either the middle item should be 5 or the result should be `False`. --- exercises/concept/card-games/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/card-games/.docs/instructions.md b/exercises/concept/card-games/.docs/instructions.md index 3b60d0b6fed..d77f8f766ff 100644 --- a/exercises/concept/card-games/.docs/instructions.md +++ b/exercises/concept/card-games/.docs/instructions.md @@ -76,7 +76,7 @@ Note: _The length of all hands are odd, to make finding a median easier._ >>> approx_average_is_average([1, 2, 3]) True ->>> approx_average_is_average([2, 3, 4, 8, 8]) +>>> approx_average_is_average([2, 3, 5, 8, 8]) True >>> approx_average_is_average([1, 2, 3, 5, 9])