From f1b4cdcd6d8972c1358f1066a77ed7998e1c64e9 Mon Sep 17 00:00:00 2001 From: Yangshun Tay Date: Tue, 31 May 2022 10:05:16 +0800 Subject: [PATCH] content: fix typo in Queue questions --- contents/algorithms/queue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents/algorithms/queue.md b/contents/algorithms/queue.md index 716cd9ea..a83258b2 100644 --- a/contents/algorithms/queue.md +++ b/contents/algorithms/queue.md @@ -67,7 +67,7 @@ Most languages don't have a built in Queue class which to be used, and candidate _These are essential questions to practice if you're studying for this topic._ -- [Implement Stack using Queues](https://leetcode.com/problems/implement-queue-using-stacks) +- [Implement Stack using Queues](https://leetcode.com/problems/implement-stack-using-queues) ## Recommended practice questions