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)
複製代碼