Skip to content

Commit 532a9b9

Browse files
committed
Stack
1 parent 8f553e2 commit 532a9b9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Stack-and-Queue/stack.py

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
A stack is a linear data structure that follows the principle of Last In First Out (LIFO). This means the last element inserted inside the stack is removed first.
44
'''
55

6-
# Stack implementation in python
7-
8-
96
# Creating a stack
107
def create_stack():
118
stack = []

0 commit comments

Comments
 (0)