Skip to content

Commit e1d9847

Browse files
author
boraxpr
committed
bug fix
1 parent 18b1575 commit e1d9847

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

45/fifo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from collections import deque
22
def my_queue(n=5):
33
l = []
4-
d = deque(l, 5)
4+
d = deque(l, n)
55
return d
66

77

0 commit comments

Comments
 (0)