给你一个字符串 s,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中 最后一个 单词的长度。
单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。
示例 1:
输入:s = “Hello World”
输出:5
解释:最后一个单词是“World”,长度为5。
示例 2:
Go
func lengthOfLastWord(s string) (ans int) {
index := len(s) - 1
for s[index] == ' ' {
index--
}
for index >= 0 && s[index] != ' ' {
ans++
index--
}
return
}
func main() {
s := "Hello World"
ans := lengthOfLastWord(s)
println(ans)
}
JavaScript文章来源:https://www.toymoban.com/news/detail-688455.html
function lengthOfLastWord(s){
let index = s.length-1
while(s[index] === " "){
index --
}
let ans = 0
while(index>=0 && s[index]!==" "){
ans ++
index --
}
console.log(ans)
}
lengthOfLastWord("Hello World")
Python文章来源地址https://www.toymoban.com/news/detail-688455.html
len(s.split()[-1])
到了这里,关于Leetcode 最后一个单词的长度的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!