Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One Line Code solution in Clear category for Surjection Strings by alterGNU
isometric_strings = lambda s1,s2: [s1.index(i) for i in s1]==[s2.index(j) for j in s2]
June 24, 2021