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

Class Solution

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

public class Node { public final int val; public final List neighbours; public Node(int val) { this.val = val; this.neighbours = new ArrayList<>(); } }

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