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