From 4ec77decfad87bbf849eb2e04a73d8dc5165838b Mon Sep 17 00:00:00 2001 From: jaluceloyola <97187701+jaluceloyola@users.noreply.github.com> Date: Tue, 12 Mar 2024 13:07:37 -0500 Subject: [PATCH] Update Answers.md --- Answers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Answers.md b/Answers.md index deca338..569014d 100644 --- a/Answers.md +++ b/Answers.md @@ -1,5 +1,5 @@ Why does FixedArrayQueue require an explicit constructor? -Since we have a boolean checking to see if the constructor is positive, FixedArrayQueue requires an explicit constructor. +-Since we have a boolean checking to see if the constructor is positive, FixedArrayQueue requires an explicit constructor. What happens when you offer an item to a full FixedArrayQueue? The item is not added, and the offer() method returns false.