See More

class Solution { public boolean isIsomorphic(String s, String t) { if(s == null && t == null) return true; HashMap map = new HashMap<>(); for(int i=0; i