All problems
EasyData Structures
Stack with list
Implement a stack using append + pop. Push 1, 2, 3 — then pop twice and print.
- #stack
Sample input
push 1,2,3 then pop twice
Sample output
3 2
stack-with-list.py
Output
Press "Run code" to execute.
Loading…
Implement a stack using append + pop. Push 1, 2, 3 — then pop twice and print.
push 1,2,3 then pop twice
3 2
Press "Run code" to execute.