给定一个仅包含大小写字母和空格 ' '
的字符串,返回其最后一个单词的长度。
如果不存在最后一个单词,请返回 0 。
说明:一个单词是指由字母组成,但不包含任何空格的字符串。
示例:
输入: "Hello World" 输出: 5
题目标签:String
题目链接:LeetCode / LeetCode中国
Language | Runtime | Memory |
---|---|---|
python3 | 44 ms | N/A |
class Solution:
def lengthOfLastWord(self, s):
"""
:type s: str
:rtype: int
"""
a = s.split()
return len(a[-1]) if a else 0