Skip to main content
Go to Latest
interface PrefixTree
import { type PrefixTree } from "https://deno.land/x/masx200_leetcode_test@10.0.3/implement-trie-prefix-tree/PrefixTree.ts";

Properties

children: Map<string, PrefixTree>
isEnd: boolean
function PrefixTree
import { PrefixTree } from "https://deno.land/x/masx200_leetcode_test@10.0.3/implement-trie-prefix-tree/PrefixTree.ts";

Parameters

optional
isEnd = [UNSUPPORTED]
optional
children = [UNSUPPORTED]

Returns

PrefixTree