fix(curriculum): update the answer to the binary search question (#64496)

This commit is contained in:
Gary Yeung 2025-12-11 23:59:34 +08:00 committed by GitHub
parent bc3904a48f
commit 287ef356b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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--