LeetCodeDiary

A Diary for solving LeetCode problems

View on GitHub

58. 最后一个单词的长度

给你一个字符串 s,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中最后一个单词的长度。

单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。

示例 1:

输入:s = "Hello World"
输出:5

示例 2:

输入:s = "   fly me   to   the moon  "
输出:4

示例 3:

输入:s = "luffy is still joyboy"
输出:6

提示:

字符串 简单

代码

class Solution:
    def lengthOfLastWord(self, s: str) -> int:
        s = s.strip()
        ans, i = 0, len(s) - 1
        while i>=0 and s[i] != ' ':
            ans += 1
            i -= 1
        return ans

或者

class Solution:
    def lengthOfLastWord(self, s: str) -> int:
        s = s.strip().split(' ')
        return len(s[-1])