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