datrie icon indicating copy to clipboard operation
datrie copied to clipboard

Doesn't work for all cases?

Open rmsutton opened this issue 9 years ago • 0 comments

I can see this [well written] implementation is based on Aoe1992 but it seems like it doesn't work for all cases.

var trie = new Trie({...});
trie.insert('baby#');
trie.insert('babe#');
var c1 = trie.contains("baby#");
var c2 = trie.contains("babe#");

I would expect c1 and c2 to both be true but c2 is false.

Have you experienced the same issue?

rmsutton avatar Mar 18 '16 02:03 rmsutton