Skip to content

Commit 8b0e42f

Browse files
committed
Time: 52 ms (79.37%), Space: 51.3 MB (57.32%) - LeetHub
1 parent 1eaa6f9 commit 8b0e42f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
function lengthOfLastWord(s: string): number {
2+
let count = 0;
3+
let sTrim = s.trim();
4+
for (let i = sTrim.length - 1; i >= 0; i--) {
5+
if (sTrim.charAt(i) !== ' ') count++;
6+
else break;
7+
}
8+
return count;
9+
};

0 commit comments

Comments
 (0)