美文网首页
LeetCode--最后一个单词的长度(python版)

LeetCode--最后一个单词的长度(python版)

作者: 猫爱吃草莓 | 来源:发表于2019-01-02 14:51 被阅读0次
    class Solution(object):
        def lengthOfLastWord(self, s):
            """
            :type s: str
            :rtype: int
            """
            s=s.strip()
            j=0
            for i in range(len(s)-1,-1,-1):
                if s[i]!=' ':
                    j=j+1
                else:
                    return j
            return j
    

    重点:

    1. 需要先strip字符串,防止尾部有空格的情况
    2. 字符串倒过来遍历,range使用方法;或者使用 reversed

    相关文章

      网友评论

          本文标题:LeetCode--最后一个单词的长度(python版)

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