CJCoding With Joseph
15per day

Stack Class

Create a class IntStack backed by a List<int> with Push(int n), Pop() (removes and returns the top item), and Count(). Do NOT write a Main method.

Push 1, 2, 3, then Pop once → prints '3 then 2' (popped value, then remaining count).

Expected Output:

3
2
Topics:
Classes
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.