-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLengthofLastWord.py
More file actions
executable file
·57 lines (41 loc) · 1.27 KB
/
LengthofLastWord.py
File metadata and controls
executable file
·57 lines (41 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""
Given a string s consisting of words and spaces, return the length of the last word in the string.
A word is a maximal
substring
consisting of non-space characters only.
Example 1:
Input: s = "Hello World"
Output: 5
Explanation: The last word is "World" with length 5.
Example 2:
Input: s = " fly me to the moon "
Output: 4
Explanation: The last word is "moon" with length 4.
Example 3:
Input: s = "luffy is still joyboy"
Output: 6
Explanation: The last word is "joyboy" with length 6.
Constraints:
1 <= s.length <= 104
s consists of only English letters and spaces ' '.
There will be at least one word in s.
"""
class Solution:
def lengthOfLastWord(self, s: str) -> int:
# Split the string into words
words = s.split()
# Check if there are any words
if words:
# Return the length of the last word
return len(words[-1])
else:
return 0
# Example usage
if __name__ == "__main__":
solution = Solution()
s1 = "Hello World"
s2 = " fly me to the moon "
s3 = "luffy is still joyboy"
print(solution.lengthOfLastWord(s1)) # Expected output: 5
print(solution.lengthOfLastWord(s2)) # Expected output: 4
print(solution.lengthOfLastWord(s3)) # Expected output: 6