(self, new_data: int)
| 19 | |
| 20 | # method to insert nodes at the start of linkedlist |
| 21 | def insert(self, new_data: int) -> None: |
| 22 | new_node = Node(new_data) |
| 23 | new_node.next = self.head |
| 24 | self.head = new_node |
| 25 | |
| 26 | # method to print the linkedlist |
| 27 | def printLL(self) -> None: |
no test coverage detected