题目链接
https://leetcode-cn.com/problems/length-of-last-word/
描述
给定一个仅包含大小写字母和空格 ' ' 的字符串 s,返回其最后一个单词的长度。如果字符串从左向右滚动显示,那么最后一个
单词就是最后出现的单词。
如果不存在最后一个单词,请返回 0 。
说明:一个单词是指仅由字母组成、不包含任何空格字符的 最大子字符串。
示例
输入: "Hello World"
输出: 5
初始代码模板
class Solution {
public int lengthOfLastWord(String s) {
}
}
代码
注意边界就行,另外注意末尾可能会有空格
class Solution {
public int lengthOfLastWord(String s) {
int end = s.length() - 1;
while (end >= 0 && s.charAt(end) == ' ') {
end--;
}
int res = 0;
while (end >= 0 && s.charAt(end) != ' ') {
res++;
end--;
}
return res;
}
}