Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/Jack-Lee-Hiter/AlgorithmsByPython
/ dequeue
Method
dequeue
Queue.py:11–12 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
9
self.items.insert(0, item)
10
11
def
dequeue(self):
12
return
self.items.pop()
13
14
def
size(self):
15
return
len(self.items)
Callers
2
hotPotato
Function · 0.95
Queue.py
File · 0.80
Calls
1
pop
Method · 0.45
Tested by
no test coverage detected