Skip to main content
Latest
class TrieNode
import { TrieNode } from "https://deno.land/x/masx200_leetcode_test@10.6.5/sum-of-prefix-scores-of-strings/sumPrefixScores.ts";

Constructors

new
TrieNode(
wordCount?,
prefixCount?,
children?,
prefix?,
)

Properties

children: Record<string, TrieNode>
prefix: string
prefixCount: number
wordCount: number