Skip to content

Instantly share code, notes, and snippets.

View mikews93's full-sized avatar
🎸

Miguel Blanco mikews93

🎸
View GitHub Profile
@mikews93
mikews93 / Trie.ts
Created February 20, 2021 05:36
Basic implementation of Trie data structure
interface searchOptions {
showHoleWord?: boolean;
}
class trieNode {
public word: string;
public children;
public isWord: boolean;
constructor(word: string) {