mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
Time: 22 ms (70.89%), Space: 13.5 MB (75.98%) - LeetHub
This commit is contained in:
@@ -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])
|
||||
Reference in New Issue
Block a user