(self, data)
| 3 | |
| 4 | # Function to initialize the node object |
| 5 | def __init__(self, data): |
| 6 | self.data = data # Assign data |
| 7 | self.next = None # Initialize |
| 8 | # next as null |
| 9 | |
| 10 | # Linked List class |
| 11 | class LinkedList: |
nothing calls this directly
no outgoing calls
no test coverage detected