Update README.md

This commit is contained in:
bt3gl 2023-08-08 17:11:56 -07:00 committed by GitHub
parent ac1f70506a
commit 7b32dbb0d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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