最后一个单词的长度
给你一个字符串 s,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中 最后一个 单词的长度。
单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。
示例 1:
输入:s = "Hello World"
输出:5
解释:最后一个单词是“World”,长度为5。
1
2
3
2
3
/**
* @param {string} s
* @return {number}
*/
var lengthOfLastWord = function(s) {
let index = s.length - 1;
while (s[index] === ' ') {
index--;
}
let wordLength = 0;
while (index >= 0 && s[index] !== ' ') {
wordLength++;
index--;
}
return wordLength;
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/length-of-last-word