最后一个单词的长度 (Length of Last Word)

 

思路:

// @Title: 最后一个单词的长度 (Length of Last Word)
// @Author: qisiii
// @Date: 2024-05-21 22:18:45
// @Runtime: 0 ms
// @Memory: 40.8 MB
// @comment: 
// @flag: 
class Solution {
    public int lengthOfLastWord(String s) {
        char[] chars=s.toCharArray();
        int end=chars.length;
        for(int i=chars.length-1;i>=0;i--){
            if(end!=chars.length){
                if(chars[i]==' '){
                    return end-i;
                }
            }
            if(end==chars.length&&chars[i]!=' '){
                end=i;
            }
        }
        return s.trim().length();
    }
}
Licensed under CC BY-NC-SA 4.0
最后更新于 2024-10-18