From 7b32dbb0d70817bbe14b841f6bb39d54bf6de490 Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Tue, 8 Aug 2023 17:11:56 -0700 Subject: [PATCH] Update README.md --- queues/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/queues/README.md b/queues/README.md index 4403cc4..83d658c 100644 --- a/queues/README.md +++ b/queues/README.md @@ -12,6 +12,8 @@ * queues are often used in **breath-first search** (where you store a list of nodes to be processed) or when implementing a cache. +* in python, queues can be called with `collections.deque()` (and methods `popleft()` and `insert()`). +