From ac0cb0a641bece8c22000bbcd2c8e8ec5c666159 Mon Sep 17 00:00:00 2001 From: Amal Bijoy Date: Tue, 7 Apr 2026 12:06:37 +0530 Subject: [PATCH] Fix deque operation names in Day 7 queue notes --- Notes/Day-7-queue.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Notes/Day-7-queue.md b/Notes/Day-7-queue.md index 519fb2c..cb7e827 100644 --- a/Notes/Day-7-queue.md +++ b/Notes/Day-7-queue.md @@ -32,9 +32,9 @@ This means that the element inserted first will be removed first. It is analogou 1. **`insertFront(element)`:** Add an element to the front end. 2. **`insertRear(element)`:** Add an element to the rear end. 3. **`deleteFront()`:** Remove an element from the front end. - 4. **`deleteEmpty()`:** Remove an element from the rear end. + 4. **`deleteRear()`:** Remove an element from the rear end. 5. **`peekFront()`:** Get the front element. - 6. **`peakRear()`:** Get the rear element. + 6. **`peekRear()`:** Get the rear element. **Example for simple/linear queue:**