@kamilmielnik/trie
Version:
Trie data structure implementation in TypeScript. Highly performant. No dependencies. Built for a Scrabble Solver.
12 lines (11 loc) • 303 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OPEN_PARENS = exports.CLOSE_PARENS = void 0;
/**
* Represents end of a node in serialized format.
*/
exports.CLOSE_PARENS = ')';
/**
* Represents start of a node in serialized format.
*/
exports.OPEN_PARENS = '(';