Comment it before submitting public class Node { public final int val; public Node next; public Node(int val) { this.val = val; } public Node(int val, Node next) { this.val = val; this.next = next; } }
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected