Let's consider the following string text
"I just tried the new burgers in burger land!" and the following array of strings ["eat", "burger", "fries"]
What I want is to know if any of the words of text
exist in the array, but in a optimized way... not just with two for-loops...
Any ideas?