美文网首页
[LeetCode]58、最后一个单词的长度

[LeetCode]58、最后一个单词的长度

作者: 河海中最菜 | 来源:发表于2019-08-03 09:50 被阅读0次

    题目描述

    如题

    思路解析

    去除右边空格,分割(“ ”),取最后一个的长度

    class Solution:
        def lengthOfLastWord(self, s: str) -> int:
            if not s or len(s) == 0:
                return 0
            return len(s.rstrip().split(" ")[-1])
    
    Ac58

    相关文章

      网友评论

          本文标题:[LeetCode]58、最后一个单词的长度

          本文链接:https://www.haomeiwen.com/subject/obnddctx.html