MCPcopy Index your code
hub / github.com/geekcomputers/Python / Node

Class Node

singly_linked_list.py:1–4  ·  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
5
6
7class LinkedList:

Callers 3

add_nodeMethod · 0.70
insert_at_headMethod · 0.70
insertMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected