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
The generated code loops over each input string and compares with all possible options for a match. This is O(N^2). We can bring it down to linear by using a minimal perfect hashing function for comparison.
The text was updated successfully, but these errors were encountered:
The generated code loops over each input string and compares with all possible options for a match. This is O(N^2). We can bring it down to linear by using a minimal perfect hashing function for comparison.
The text was updated successfully, but these errors were encountered: