From 3b70736d4b501f3b8b7fafaea53b668567e7bbbd Mon Sep 17 00:00:00 2001 From: Amine Abdellaziz <167524891+mathaziz@users.noreply.github.com> Date: Sat, 28 Mar 2026 22:52:03 +0100 Subject: [PATCH] Fix typo Task 5 -> Task 4 --- exercises/concept/making-the-grade/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/making-the-grade/.docs/instructions.md b/exercises/concept/making-the-grade/.docs/instructions.md index 058689ac..870909f0 100644 --- a/exercises/concept/making-the-grade/.docs/instructions.md +++ b/exercises/concept/making-the-grade/.docs/instructions.md @@ -97,7 +97,7 @@ student_ranking(student_scores, student_names) Although a "perfect" score of 100 is rare on an exam, it is interesting to know if at least one student has achieved it. Create the function `perfect_score()` with parameters `student_scores` and `student_names`. -The lists are the same as in task 5. +The lists are the same as in task 4. The function should `return` _the first_ `` (as a string) of the student who scored 100 on the exam. If no 100 scores are found, an empty string `""` should be returned.