Determine if two strings have a one-to-one character mapping.
Constraints
Example
```python
>>> is_isomorphic("egg", "add")
True
>>> is_isomorphic("foo", "bar")
False
>>> is_isomorphic("paper", "title")
True
>>> is_isomorphic("ab", "aa")
False
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints