Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ isEmpty
Method
isEmpty
Python/circular queue.py:28–32 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
26
27
# to check if queue is empty
28
def
isEmpty(self):
29
if
self.top ==-1:
30
return
True
31
else
:
32
return
False
33
34
35
Callers
6
dequeue
Method · 0.95
peek
Method · 0.95
mergeKLists
Method · 0.45
merge
Method · 0.45
medianSlidingWindow
Method · 0.45
reverseWords
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected