This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def equalsWhenOneCharRemoved(x, y): | |
# Can't be different in length by more than 1 | |
if (abs(len(x) - len(y)) > 1): | |
return False | |
# Iterate through X and Y together | |
diffFound = 0; | |
lenX = len(x) |