Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
0 <= first == second - 1 solution in Clear category for Goes Right After by flpo
def goes_after(word, first, second):
return 0 <= word.find(first) == word.find(second) - 1
April 16, 2020
Comments: