12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
deque(['f', 'g', 'h', 'i', 'j'])
|
|
j
|
|
f
|
|
['g', 'h', 'i']
|
|
g
|
|
i
|
|
True
|
|
deque(['g', 'h', 'i', 'j', 'k', 'l'])
|
|
deque(['l', 'g', 'h', 'i', 'j', 'k'])
|
|
deque(['g', 'h', 'i', 'j', 'k', 'l'])
|
|
deque(['l', 'k', 'j', 'i', 'h', 'g'])
|