Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
"Goes Right After" solution in Clear category for Goes Right After by zwerkoff
def goes_after(word: str, first: str, second: str) -> bool:
try:
return word.index(first) + 1 == word.index(second)
except:
return False
July 28, 2020
Comments: