mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-02 18:20:58 +08:00
build
This commit is contained in:
@@ -88,7 +88,7 @@ comments: true
|
||||
# 初始化队列
|
||||
# 在 Python 中,我们一般将双向队列类 deque 看作队列使用
|
||||
# 虽然 queue.Queue() 是纯正的队列类,但不太好用,因此不建议
|
||||
que: Deque[int] = collections.deque()
|
||||
que: deque[int] = collections.deque()
|
||||
|
||||
# 元素入队
|
||||
que.append(1)
|
||||
|
||||
Reference in New Issue
Block a user