[LeetCode][Python]58. Length of Last Word

Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.

If the last word does not exist, return 0.

Note: A word is defined as a character sequence consists of non-space characters only.

For example,

Given s = "Hello World",

return 5.

思路:

首先就是找到最后一个单词。首先考虑的就是使用split()函数得到一个list,然后取最后一个,调用len函数。考虑到字符串为空或者全部由空白字符组成。所以要对s.split()进行非空判断。

#!/usr/bin/env python
# -*- coding: UTF-8 -*-
class Solution(object):
    def lengthOfLastWord(self, s):
        """
        :type s: str
        :rtype: int
        """
        if not s or not s.split():
            return 0
        return len(s.split()[-1])
    def lengthOfLastWord2(self,s):
        return 0 if len(s.split()) == 0 else len(s.split()[-1])

if __name__ == '__main__':
    sol = Solution()
    s = "hello world"
    print sol.lengthOfLastWord(s)

    s = "hello"
    print sol.lengthOfLastWord(s)
    print sol.lengthOfLastWord2(s)

    s = " "
    print sol.lengthOfLastWord(s)
    print sol.lengthOfLastWord2(s)


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 14,354评论 0 33
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 13,493评论 0 23
  • 光与纸的艳遇系列 两个人、两种事物、两种特质,彼此照 亮,彼此成就,乃是世间最美的艳遇。 by李璐含 2、其它系列...
    璐含阅读 4,803评论 0 1
  • 昨天介绍的几种方法抠图方法比较简单,只适用于简单的图像,那今天我们就来说一下几种复杂的PS抠图方法。 1、通道工具...
    徐慕熹微阅读 14,719评论 107 779
  • 每天我们的都要买买买,不管是日常开销的衣食住行,还是娱乐购,都在不断买买买花花花。如何能更理性的买买买呢?今天我们...
    海南小帅阅读 2,206评论 2 5

友情链接更多精彩内容