Created
March 30, 2019 21:11
-
-
Save dance2die/8e5597304ea3246396d1c40506169736 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Trie = /** @class */ (function () { | |
function Trie() { | |
this.has = this.has.bind(this); | |
} | |
Trie.prototype.has = function (word) { return true; }; | |
return Trie; | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment