length_of_ast_word
length_of_ast_word.py 源码
# 最后一个单词的长度
class Solution:
def lengthOfLastWord(self, s: str) -> int:
if not s:
return 0
s = s.strip()
res, i = 0, len(s) - 1
while i >= 0 and s[i] != ' ':
res, i = res + 1, i - 1
return res
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦