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()`). +