(String[] args)
| 16 | } |
| 17 | |
| 18 | public static void main(String[] args) { |
| 19 | LinkedListNode head = AssortedMethods.randomLinkedList(10, 0, 10); |
| 20 | System.out.println(head.printForward()); |
| 21 | deleteNode(head.next.next.next.next); // delete node 4 |
| 22 | System.out.println(head.printForward()); |
| 23 | } |
| 24 | |
| 25 | } |
nothing calls this directly
no test coverage detected