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

Method __init__

DSA/circularLinkedList.py:2–4  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected