Time: 22 ms (70.89%), Space: 13.5 MB (75.98%) - LeetHub

This commit is contained in:
Deven
2022-08-04 20:11:37 -04:00
parent d908ab0377
commit 188511c6eb
@@ -0,0 +1,9 @@
class Solution(object):
def lengthOfLastWord(self, s):
"""
:type s: str
:rtype: int
"""
s = s.strip()
words = s.split()
return len(words[-1])