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
//AlL occurrences of a character must be replaced with another character while preserving the order of the characters no two characters map to the same character
import java.util.HashMap;
public class lec88_isomorphic_prblm {
public boolean isIsomorphic(String s, String t) {
HashMap<Character, Character> mp = new HashMap<>();