From d69d49786da15bacbdc2358dd2130326eff4e92d Mon Sep 17 00:00:00 2001 From: Fedor Zentsev Date: Sun, 25 Jan 2026 11:42:19 +0100 Subject: [PATCH] fix: dropWhile question --- _data/quiz/questions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/quiz/questions.yml b/_data/quiz/questions.yml index a4577ee..1943e66 100644 --- a/_data/quiz/questions.yml +++ b/_data/quiz/questions.yml @@ -352,8 +352,8 @@ - "Empty string" - "MomSon" - "DadMomSon" - correct: 2 - explanation: "dropWhile removes elements from the start while the predicate is true. Prints MomSon." + correct: 1 + explanation: "dropWhile removes elements from the start while the predicate is true. Prints empty string" category: "Streams" - question: "Which value is returned by Arrays.binarySearch when the key is absent?"