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 kdim
def goes_after(word: str, first: str, second: str) -> bool:
return 0 < word.find(first) + 1 == word.find(second)
Jan. 27, 2021
Comments: