Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re solution in Creative category for Words Order by juestr
import re
def words_order(text, words):
return len(set(words)) == len(words) and \
not not re.search(r'\b' + r'\b.*\b'.join(words) + r'\b', text)
May 23, 2020
Comments: