kuroko/test/testDeque.krk.expect

12 lines
214 B
Plaintext
Raw Normal View History

2021-01-11 08:08:05 +03:00
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'])