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