Leetcode
58.lengthOfLastWord.py
class
Solution
:
def
lengthOfLastWord
(
self
,
s
:
str
)
->
int
:
return
len
(
s
.
strip
().
split
(
" "
)[
-
1
])