Leetcode

205. Isomorphic Strings

Isomorphic strings are two strings where characters at the same index in both strings can be replaced to make the strings equal. In other words, if we can replace all occurrences of one character in the first string with another character and obtain the second string, and vice versa, then the strings are isomorphic. In…