Update README.md

This commit is contained in:
Mattia 2020-05-31 16:41:19 +02:00 committed by GitHub
parent 369f9cd44e
commit 74ff215b63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ The difference between a stack and a queue is that the former follows the LIFO (
These 2 collections are implemented using `collections.deque` for fast `O(1)` complexity when accessing elements trough `pop`/`get` and `push`/`put`
For both queues and stacks you can pass
### Example - TTLQueue