Skip to main content
Go to Latest
class Node
import { Node } from "https://deno.land/x/masx200_leetcode_test@10.4.1/design-an-expression-tree-with-evaluate-function/index.ts";

Constructors

new
Node(
val?: string,
left?: Node | null,
right?: Node | null,
)

Methods

evaluate(): number