Easy
Given two strings s and t, return true if they are isomorphic — the characters in s can be replaced to get t with a consistent one-to-one mapping (no two characters map to the same character).
Input: s = "egg", t = "add" Output: true
Input: s = "foo", t = "bar" Output: false
Input: s = "paper", t = "title" Output: true