Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Uncategorized category for Surjection Strings by Elena_Korljukova
def isometric_strings(str1: str, str2: str) -> bool:
return list(map(lambda x: str1.index(x), str1)) == list(map(lambda x: str2.index(x), str2))
Sept. 2, 2020