Solving DSA Problems. LeetCode 58: Length of Last Word
Problem statement
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 ...
mmzeynalli.hashnode.dev3 min read