Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for One Switch Strings by mildm
def switch_strings(line: str, result: str) -> bool:
return sorted(line)==sorted(result) and list(map(lambda x:x[0]==x[1],zip(line,result))).count(False)<3
Sept. 3, 2023
Comments: