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