MCPcopy Create free account
hub / github.com/BeeBombshell/Python-DSA / LinkedList

Class LinkedList

DSA/LinkedList.py:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10# Linked List class
11class LinkedList:
12
13 # Function to initialize the Linked
14 # List object
15 def __init__(self):
16 self.head = None

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected