mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
commit
18afe45e4a
|
@ -5,7 +5,7 @@ class Stack:
|
||||||
self.top = 0
|
self.top = 0
|
||||||
|
|
||||||
def is_empty(self):
|
def is_empty(self):
|
||||||
return self.top == 0
|
return (self.top == 0)
|
||||||
|
|
||||||
def push(self, item):
|
def push(self, item):
|
||||||
if self.top < len(self.stack):
|
if self.top < len(self.stack):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user