Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.05 KB

58-length-of-last-word.md

File metadata and controls

42 lines (26 loc) · 1.05 KB

58. Length of Last Word - 最后一个单词的长度

给定一个仅包含大小写字母和空格 ' ' 的字符串,返回其最后一个单词的长度。

如果不存在最后一个单词,请返回 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