Skip to main content
Go to Latest
File
export class Node { val: number; neighbors: Node[]; constructor(val?: number, neighbors?: Node[]) { this.val = val === undefined ? 0 : val; this.neighbors = neighbors === undefined ? [] : neighbors; }}