Skip to content

Function that returns the length of a last word in the string.

Notifications You must be signed in to change notification settings

JuanMarinoDev/Length-of-Last-Word

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Length of Last Word

Given a string s consisting of words and spaces, return the length of the last word in the string.

Running Tests

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 1:

Input: s = "luffy is still joyboy"

Output: 6

Explanation: The last word is "joyboy" with length 6.

Releases

No releases published

Packages