58. Length of Last Word
class Solution {
public:
int lengthOfLastWord(string s) {
int i = s.size( )-1;
int idx=i;
// find the position of the first non-space character from the
// last of the string...
while(s[i]==' '){
i--;
}
idx =i;
int len =0;
for(int k=idx;k>=0;k--){
if(s[k]!=' ')
len++;
else
break;
}
return len;
}
};
Comments
Post a Comment