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
Use a bool array to look up valid characters instead of a switch. This is far
more performant as switch-case becomes essentially a long list of if
statements, whereas a lookup in a bool array is constant-time.
0 commit comments