Merge pull request #132 from a16su/master

修改错别字
This commit is contained in:
Yudong Jin 2022-12-19 21:55:29 +08:00 committed by GitHub
commit d7f3664e0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ comments: true
```python title="queue.py" ```python title="queue.py"
""" 初始化队列 """ """ 初始化队列 """
# 在 Python 中,我们一般将双向队列类 deque 看队列使用 # 在 Python 中,我们一般将双向队列类 deque 看队列使用
# 虽然 queue.Queue() 是纯正的队列类,但不太好用,因此不建议 # 虽然 queue.Queue() 是纯正的队列类,但不太好用,因此不建议
que = collections.deque() que = collections.deque()