1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cs/length-of-last-word.cs

26 lines
495 B
C#
Raw Normal View History

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;
}
}