MCPcopy Create free account
hub / github.com/Yandex-Practicum/algo-interviews-templates / Solution

Class Solution

I/java/Solution.java:19–24  ·  view source on GitHub ↗

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 from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected