From 287ef356b84b118e9eb9549bf9679f47a03641ad Mon Sep 17 00:00:00 2001 From: Gary Yeung <5206130+garyeung@users.noreply.github.com> Date: Thu, 11 Dec 2025 23:59:34 +0800 Subject: [PATCH] fix(curriculum): update the answer to the binary search question (#64496) --- .../67f4136110dddb491be2e90a.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/quiz-searching-and-sorting-algorithms/67f4136110dddb491be2e90a.md b/curriculum/challenges/english/blocks/quiz-searching-and-sorting-algorithms/67f4136110dddb491be2e90a.md index 8b2fc9f3929..ab216297281 100644 --- a/curriculum/challenges/english/blocks/quiz-searching-and-sorting-algorithms/67f4136110dddb491be2e90a.md +++ b/curriculum/challenges/english/blocks/quiz-searching-and-sorting-algorithms/67f4136110dddb491be2e90a.md @@ -201,7 +201,7 @@ The list must contain only unique values. --- -The list must be sorted in descending order. +The list must have an even number of elements. --- @@ -209,7 +209,7 @@ The list must contain no negative numbers. #### --answer-- -The list must be sorted in ascending order. +The list must be sorted. ### --question--