Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/Jack-Lee-Hiter/AlgorithmsByPython
/ removeFront
Method
removeFront
Queue.py:51–52 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
49
self.items.append(item)
50
51
def
removeFront(self):
52
return
self.items.pop()
53
54
def
removeRear(self):
55
return
self.items.pop(0)
Callers
1
palcheker
Function · 0.95
Calls
1
pop
Method · 0.45
Tested by
no test coverage detected