Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
OK, right after solution in Creative category for Goes Right After by tom-tom
def goes_after(word: str, first: str, second: str) -> bool:
return word.find(first) + 1 == word.find(second) > 0
April 16, 2020
Comments: