Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/Jack-Lee-Hiter/AlgorithmsByPython
/ add
Method
add
Lists.py:31–34 ·
view source on GitHub ↗
(self, item)
Source
from the content-addressed store, hash-verified
29
return
self.head == None
30
31
def
add(self, item):
32
temp = Node(item)
33
temp.setNext(self.head)
34
self.head = temp
35
36
def
size(self):
37
current = self.head
Callers
1
Lists.py
File · 0.80
Calls
2
setNext
Method · 0.95
Node
Class · 0.85
Tested by
no test coverage detected