题目
一个 句子 由一些 单词 以及它们之间的单个空格组成,句子的开头和结尾不会有多余空格。
给你一个字符串数组 sentences
,其中 sentences[i]
表示单个 句子 。
请你返回单个句子里 单词的最多数目 。
示例1:
1 | 输入:sentences = ["alice and bob love leetcode", "i think so too", "this is great thanks very much"] |
示例2:
1 | 输入:sentences = ["please wait", "continue to fight", "continue to win"] |
提示:
1 <= sentences.length <= 100
1 <= sentences[i].length <= 100
sentences[i]
只包含小写英文字母和' '
。sentences[i]
的开头和结尾都没有空格。sentences[i]
中所有单词由单个空格隔开。
解法
解法一:
Java
1 | public int mostWordsFound(String[] sentences) { |