058 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内置的split方法,也是可行的。
|
|
P.S. 290题(Word Pattern)涉及到关于空格处理与分割的方法。