Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Goes Right After solution in Clear category for Goes Right After by vvm70
def goes_after(word: str, first: str, second: str) -> bool:
return word.find(second) == word.find(first) + 1 if word.find(second) > 0 else False
April 25, 2020