1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00

cs: add «58. Length of Last Word»

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-04-01 21:30:57 +02:00
parent a59eaa2eb4
commit 49defb257e
Signed by: mfocko
GPG key ID: 7C47D46246790496

25
cs/length-of-last-word.cs Normal file
View file

@ -0,0 +1,25 @@
public class Solution {
public int LengthOfLastWord(string s) {
var lastLength = 0;
var length = 0;
foreach (var c in s) {
if (char.IsWhiteSpace(c)) {
if (length != 0) {
lastLength = length;
}
length = 0;
continue;
}
++length;
}
if (length != 0) {
lastLength = length;
}
return lastLength;
}
}