Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Clear category for Surjection Strings by Goodester
def isometric_strings(str1: str, str2: str) -> bool:
return len(set(str1)) == len(set(zip(str1, str2)))
May 24, 2020