mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
25 lines
495 B
C#
25 lines
495 B
C#
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;
|
|
}
|
|
}
|