Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Zip and Dict solution in Clear category for Surjection Strings by mAzrunnr
def isometric_strings(a, b):
c = dict(zip(list(a), list(b)))
answer = "".join([c[x] for x in a])
return answer == b
June 14, 2021