fork download
  1. def mostWordsFound(sentences):
  2. max_words = 0
  3. for sentence in sentences:
  4. word_count = len(sentence.split())
  5. max_words = max(max_words, word_count)
  6. return max_words
  7.  
Success #stdin #stdout 0.1s 14168KB
stdin
Standard input is empty
stdout
Standard output is empty