(linkedlist, value)
| 64 | |
| 65 | # Helper function to insert node in the front of a linked list |
| 66 | def addNodeInFront(linkedlist, value): |
| 67 | node = Node(value) |
| 68 | node.next = linkedlist.head |
| 69 | linkedlist.head = node |
| 70 | |
| 71 | |
| 72 | # Helper function to insert node before a node |
no test coverage detected