Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/subbarayudu-j/TheAlgorithms-Python
/ is_empty
Method
is_empty
data_structures/stacks/__init__.py:7–8 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
5
self.top = 0
6
7
def
is_empty(self):
8
return
(self.top == 0)
9
10
def
push(self, item):
11
if
self.top < len(self.stack):
Callers
1
pop
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected