描述
给定一个字符串, 包含大小写字母、空格 ' ',请返回其最后一个单词的长度。
如果不存在最后一个单词,请返回 0 。
一个单词的界定是,由字母组成,但不包含任何的空格。
样例
样例 1:
输入:"Hello World"
输出:5
样例 2:
输入:"Hello LintCode"
输出:8
class Solution:
"""
@param s: A string
@return: the length of last word
"""
def lengthOfLastWord(self, s):
return len(s.split()[-1]) if len(s)>0 else 0