142python
563bash
Favorite函数
Share Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters.ui
Please note that the string does not contain any non-printable characters.spa
Example:code
Input: "Hello, my name is John" Output: 5string
思路:split函数it
代码:python3io
class Solution:
def countSegments(self, s: str) -> int:
arr = s.split()
return len(arr)
复制代码