Skip to content

Commit da98953

Browse files
authored
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`.
1 parent 102bfb7 commit da98953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/card-games/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Note: _The length of all hands are odd, to make finding a median easier._
7676
>>> approx_average_is_average([1, 2, 3])
7777
True
7878

79-
>>> approx_average_is_average([2, 3, 4, 8, 8])
79+
>>> approx_average_is_average([2, 3, 5, 8, 8])
8080
True
8181

8282
>>> approx_average_is_average([1, 2, 3, 5, 9])

0 commit comments

Comments
 (0)