您的位置:首页 > 其它

leetcode 434[easy]---Number of Segments in a String

2017-12-25 18:36 447 查看
   

Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters.
Please note that the string does not contain any non-printable characters.
Example:
Input: "Hello, my name is John"
Output: 5


Seen this question in a real interview before?  No

Thanks for your feedback.

思路:用s.split()以空格键分割string,并以list形式输出

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode string split