205. Isomorphic Strings
problem description
Input: s = "egg", t = "add"
Output: trueInput: s = "foo", t = "bar"
Output: falseInput: s = "paper", t = "title"
Output: true
Note:
You may assume both s and t have the same length.algorithm thought
code
algorithm analysis
Last updated