Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Surjection Strings by kazuki.h
def isometric_strings(str1, str2):
return str2 == "".join(dict(zip(str1, str2))[c] for c in str1)
Dec. 6, 2022
Comments: