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
I found this regex ^\w*a\w*b\w*$, that should lead to a cubic complexity with a string in the form (ab)*-.
I'm surprised it doesn't get detected, since it is almost identical to the first example in the README, even if it needs two times more bytes to achieve about the same execution time.
The text was updated successfully, but these errors were encountered:
I found this regex
^\w*a\w*b\w*$
, that should lead to a cubic complexity with a string in the form(ab)*-
.I'm surprised it doesn't get detected, since it is almost identical to the first example in the
README
, even if it needs two times more bytes to achieve about the same execution time.The text was updated successfully, but these errors were encountered: