博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode]Length of Last Word @ Python
阅读量:6078 次
发布时间:2019-06-20

本文共 573 字,大约阅读时间需要 1 分钟。

原题地址:https://oj.leetcode.com/problems/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.

解题思路:Python强大的处理字符串的能力。

代码:

class Solution:    # @param s, a string    # @return an integer    def lengthOfLastWord(self, s):        return len(s.split()[len(s.split())-1]) if s.split() != [] else 0

 

转载地址:http://qeqgx.baihongyu.com/

你可能感兴趣的文章
Linux下基本栈溢出攻击【转】
查看>>
c# 连等算式都在做什么
查看>>
使用c:forEach 控制5个换行
查看>>
java web轻量级开发面试教程摘录,java web面试技巧汇总,如何准备Spring MVC方面的面试...
查看>>
使用ansible工具部署ceph
查看>>
linux系列博文---->深入理解linux启动运行原理(一)
查看>>
Android反编译(一) 之反编译JAVA源码
查看>>
结合当前公司发展情况,技术团队情况,设计一个适合的技术团队绩效考核机制...
查看>>
python-45: opener 的使用
查看>>
cad图纸转换完成的pdf格式模糊应该如何操作?
查看>>
Struts2与Struts1区别
查看>>
网站内容禁止复制解决办法
查看>>
Qt多线程
查看>>
我的友情链接
查看>>
想说一点东西。。。。
查看>>
css知多少(8)——float上篇
查看>>
NLB网路负载均衡管理器详解
查看>>
水平添加滚动条
查看>>
PHP中”单例模式“实例讲解
查看>>
VS2008查看dll导出函数
查看>>