Leetcode 205 Isomorphic Strings
The intuition is pretty straight forward which is to use map. But we have to keep two separate maps to record the mapping from s to t and the other from t to s. Then we loop through s and… Read More »Leetcode 205 Isomorphic Strings