deno.land / x / masx200_leetcode_test@10.6.5 / implement-trie-ii-prefix-tree / TrieNode.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
export class TrieNode { constructor( public wordCount: number = 0, public prefixCount: number = 0, public readonly children = new Map<string, TrieNode>(), ) {}}
masx200_leetcode_test

Version Info

Tagged at
a year ago