Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Surjection Strings by Elena_Korljukova
def isometric_strings(str1: str, str2: str) -> bool:
return str2 == ''.join([{i:str2[str1.index(i)] for i in str1}[i] for i in str1])
Sept. 2, 2020