From 10553392e174de815856569cd352c59b10f2adaf Mon Sep 17 00:00:00 2001 From: Vaia Patta Date: Sun, 17 May 2026 18:27:26 +0300 Subject: [PATCH] [making the grade] Clarify task 5 input --- 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..1dfc29cf 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. +Each of these parameters is a `` (of integers and of strings respectively) such that the *n*th score in `student_scores` belongs to the *n*th student in `student_names`. 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.