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
Code bug fix: 2.3 Check if a given string is a isomorphic
The previous solution is not correct, for example "aa" and "bb" are not isomorphic, while the result it true.
So I update the code to add extra checking statement. The updated solution can pass the same question at leetcode: https://leetcode.com/problems/isomorphic-strings/
0 commit comments