MCPcopy Create free account
hub / github.com/geekcomputers/Python / Add_two_Linked_List.py

File Add_two_Linked_List.py

Add_two_Linked_List.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Node:
2 def __init__(self, data):
3 self.data = data
4 self.next = None

Callers

nothing calls this directly

Calls 3

add_two_noMethod · 0.80
LinkedListClass · 0.70
insert_at_beginningMethod · 0.45

Tested by

no test coverage detected