Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Goes Right After by kazuki.h
def goes_after(word: str, first: str, second: str) -> bool:
return (first in word) and (second in word) and (word.index(first) - word.index(second) == -1)
April 16, 2020