Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 345 Bytes

File metadata and controls

16 lines (9 loc) · 345 Bytes

The problem

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

Example 2:

Input: s = " fly me to the moon "
Output: 4