Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Goes Right After by belka-fiz
def goes_after(word: str, first: str, second: str) -> bool:
return first + second in word and word.find(second) - word.find(first) == 1
April 4, 2021
Comments: