Skip to main content
Go to Latest
import * as masx200LeetcodeTest from "https://deno.land/x/masx200_leetcode_test@7.6.0/4ueAj6/index.ts";

Functions

Definition for node. class Node { val: number next: Node | null constructor(val?: number, next?: Node) { this.val = (val===undefined ? 0 : val); this.next = (next===undefined ? null : next); } }