Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_goes_after solution in Uncategorized category for Goes Right After by Jon_Red
def goes_after(w:str,f:str,s:str)->bool:
return all(x in w for x in[f,s])and w.index(s)==w.index(f)+1
April 29, 2020