I'm trying to simply check whether two sentences have any similar words.
Here's an example:
string_one = "Author: James Oliver"
string_two = "James Oliver has written this beautiful article which says...."
In this case, these two sentences match the criteria as they contain some common words.
I've tried a bunch of solutions and none seems to work properly. The two sentences would have a fairly large amount of words so splitting them into lists and finding the intersection would be really inefficient I think.