Delete rows with strings with duplicate words

I would like to delete strings with duplicate words in it.

df <- c("delete delete strings with duplicate words", "delete strings with duplicate words")

#Looking for the following outcome
df <- c("delete strings with duplicate words")

Thank you for your questions, "abc def ghi abc" types of strings also need to be removed.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.