1. 程式人生 > 其它 >#力扣 LeetCode434. 字串中的單詞數 @FDDLC

#力扣 LeetCode434. 字串中的單詞數 @FDDLC

技術標籤:演算法&資料結構

題目描述:

https://leetcode-cn.com/problems/number-of-segments-in-a-string/

Java描述:

class Solution {
    public int countSegments(String s) {
        int ans=s.length()>0&&s.charAt(0)!=' '?1:0;
        for(int i=s.length()-1;i>0;i--)if(s.charAt(i)!=' '&&s.charAt(i-1)==' ')ans++;
        return ans;
    }
}