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 tom-tom
def isometric_strings(str1: str, str2: str) -> bool:
return str1.translate(str.maketrans(str1, str2)) == str2
Jan. 27, 2019
Comments: