Skip to content

Commit 58e9cef

Browse files
committed
Day 14 - Stack using array testing
1 parent 28acb5f commit 58e9cef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

day_14_stack_using_array.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def printStack(self):
2727

2828
if __name__ == '__main__':
2929
stack = Stack()
30+
for i in range(0, 99):
31+
stack.push(i)
3032
stack.push(1)
31-
stack.push(2)
3233
stack.printStack()

0 commit comments

Comments
 (0)