kuroko/test/testDeque.krk.expect
2021-01-11 14:08:05 +09:00

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'])