Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Words Order by maxalex324
def words_order(text, list):
return [i for i in text.split() if i in list and list.count(i)<2] == list
May 19, 2020