Skip to content

Commit

Permalink
Create Day40_LeetCode58.md
Browse files Browse the repository at this point in the history
  • Loading branch information
404reese authored Jun 18, 2024
1 parent 0abafa1 commit 265f6cc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Day40_LeetCode58.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
**Day 40: LeetCode 58 [Lenght of Last Word]**

**Problem Description:**
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.

**Link to LeetCode Problem:**
https://leetcode.com/problems/length-of-last-word/description/

**Thought Process:**
spliting the string into words using the split method, but first removing any leading or trailing spaces with trim. Then, access the last element of the resulting array and return its length

0 comments on commit 265f6cc

Please sign in to comment.