0058._Length_of_Last_Word
58. Length of Last Word
难度: Easy
刷题内容
原题连接
内容描述
1 | Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. |
解题方案
思路 1
**- 时间复杂度: O(N)**- 空间复杂度: O(N)**
- 将数组以空格分割,找到最后一个字符串输出长度
- 注意以空格结尾以及输入空字符串
代码:
1 | /** |