leetcode?python 58. Length of Last Word

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode?python 58. Length of Last Word相关的知识,希望对你有一定的参考价值。

#很简单,利用strip函数去除左右两边的空格,然后用split函数分割成列表

class Solution(object):
    def lengthOfLastWord(self, s):
        """
        :type s: str
        :rtype: int
        """
        if s==None:return 0
        slist=s.strip().split(‘ ‘)
        
        return len(slist[-1])







以上是关于leetcode?python 58. Length of Last Word的主要内容,如果未能解决你的问题,请参考以下文章

Python描述 LeetCode 58. 最后一个单词的长度

python 一个名为longestRun的函数,它将一个名为L的整数列表作为参数(假设L不为空)。此函数返回lengt

leetcode .

LeetCode 79

[leetcode] 54. 螺旋矩阵

LeetCode-1. 两数之和