Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Goes Right After (simplified) by Matt_Leroy
def goes_after(word, first, second):
return first != second and first + second in word
May 21, 2023