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.
测试代码(c++):
class Solution {
public:
int lengthOfLastWord(string s) {
int count = 0;
for(int i=0;
iif(s[i]==' ')
{
if(i+1==s.size()||s[i+1]==' ')
continue;
else
{
count = 0;
continue;
}}
count++;
}
return count;
}
};
性能:
文章图片
测试代码(python):
class Solution(object):
def lengthOfLastWord(self, s):
"""
:type s: str
:rtype: int
"""
return len(s.rstrip(' ').split(' ')[-1])
性能: 【LeetCode|58.最后单词的长度】
文章图片
推荐阅读
- 个人日记|K8s中Pod生命周期和重启策略
- 数据结构与算法|【算法】力扣第 266场周赛
- leetcode|今天开始记录自己的力扣之路
- 学习分享|【C语言函数基础】
- C++|C++浇水装置问题
- 数据结构|C++技巧(用class类实现链表)
- C++|从零开始学C++之基本知识
- 步履拾级杂记|VS2019的各种使用问题及解决方法
- leetcode题解|leetcode#106. 从中序与后序遍历序列构造二叉树
- 动态规划|暴力递归经典问题