Easy
Given a string s of words and spaces, return the length of the last word. A word is a maximal substring of non-space characters.
Input: s = "Hello World" Output: 5
Input: s = " fly me to the moon " Output: 4
Input: s = "luffy is still joyboy" Output: 6