https://leetcode.com/problems/maximum-number-of-words-found-in-sentences/


Runtime: 76 ms, faster than 87.26% of TypeScript online submissions for Maximum Number of Words Found in Sentences.

Memory Usage: 45.6 MB, less than 7.64% of TypeScript online submissions for Maximum Number of Words Found in Sentences.


```typescript
function mostWordsFound(sentences: string[]): number {
    //8:07
    let max_value = 0
    for (const sentence of sentences) {
        length = sentence.split(" ").length
        if (length > max_value) {
            max_value = length;
        }
    }
    return max_value;
    //8:08
};
```
