I have a string for instance
message = "The quick brown fox jumps over the lazy dog"
and a large list of words. I would like to get the count (int) of how many times those words occur in string. If list is
words = ["the","over","azy","dog"]
It would return 4 (not 5). It shouldn't count word "the" 2 times. Each word only once!