Definition for ListNode public class ListNode { int val; ListNode next; ListNode(int x) { val = x; next = null; } }
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected