From 3a3872d252fa8a5e3f3eec1aae22d97cf077ecd7 Mon Sep 17 00:00:00 2001 From: Aditya Singh Date: Tue, 3 Mar 2026 02:41:49 +0530 Subject: [PATCH] fix(curriculum): replace stack question in data structures quiz (#66090) --- .../blocks/quiz-data-structures/67f41341453c2247fb2828f7.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md b/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md index 78d56a93483..12eeed22fe7 100644 --- a/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md +++ b/curriculum/challenges/english/blocks/quiz-data-structures/67f41341453c2247fb2828f7.md @@ -281,7 +281,7 @@ What is the time complexity of inserting a new node at the head of a singly link #### --text-- -Which operation returns the top element of a stack without removing it? +Which operation is used to remove an element from a stack? #### --distractors-- @@ -289,7 +289,7 @@ Which operation returns the top element of a stack without removing it? --- -`pop` +`dequeue` --- @@ -297,7 +297,7 @@ Insert at bottom. #### --answer-- -`peek` +`pop` ### --question--