Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Goes Right After (simplified) by Bob13
def goes_after(word: str, first: str, second: str) -> bool:
try:
return second == word[word.index(first) + 1]
except:
return False
April 21, 2024
Comments: