Solution to Cassidoo's Week of October 15, 2023 Challenge
Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if there is a one-to-one mapping possible for every character of the first string to every character of the second string.
My initial version would ignore any non-alphanumeric characters.
That said, this definitely does not handle accents, etc.