| 67 | } |
| 68 | // Solution class contains reverseList method which takes the start address as input and reverses the whole linkedlist |
| 69 | class ListNode |
| 70 | { |
| 71 | int data; |
| 72 | ListNode next; |
| 73 | } |
| 74 | // ListNode class is created for linklist creation |
nothing calls this directly
no outgoing calls
no test coverage detected