def mostWordsFound(sentences):
max_words = 0
for sentence in sentences:
word_count = len(sentence.split())
max_words = max(max_words, word_count)
return max_words
ZGVmIG1vc3RXb3Jkc0ZvdW5kKHNlbnRlbmNlcyk6CiAgICBtYXhfd29yZHMgPSAwCiAgICBmb3Igc2VudGVuY2UgaW4gc2VudGVuY2VzOgogICAgICAgIHdvcmRfY291bnQgPSBsZW4oc2VudGVuY2Uuc3BsaXQoKSkKICAgICAgICBtYXhfd29yZHMgPSBtYXgobWF4X3dvcmRzLCB3b3JkX2NvdW50KQogICAgcmV0dXJuIG1heF93b3Jkcwo=