You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if this is a bottleneck you can make it faster via tries or suffix trees. a trie is rather easy to implement but limited to queries like a.startswith(b), while suffix trees are appropriate for full text search (pretty sure there's a library for that if you don't mind additional dependencies)
if this is a bottleneck you can make it faster via tries or suffix trees. a trie is rather easy to implement but limited to queries like
a.startswith(b)
, while suffix trees are appropriate for full text search (pretty sure there's a library for that if you don't mind additional dependencies)Originally posted by @e-dorigatti in #405 (comment)
The text was updated successfully, but these errors were encountered: