6 lines
118 B
Text
6 lines
118 B
Text
|
|
q:=Queue();
|
||
|
|
q.push(1,2,3);
|
||
|
|
q.pop(); //-->1
|
||
|
|
q.empty(); //-->False
|
||
|
|
q.pop();q.pop();q.pop() //-->IndexError thrown
|