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

Popular posts from this blog

1431. Kids With the Greatest Number of Candies

125. Valid Palindrome

771. Jewels and Stones