(stack, item)
| 18 | |
| 19 | # Function to add an item to stack. It increases size by 1 |
| 20 | def push(stack, item): |
| 21 | stack.append(item) |
| 22 | print(item + " pushed to stack ") |
| 23 | |
| 24 | |
| 25 | # Function to remove an item from stack. It decreases size by 1 |
no test coverage detected