码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 58 Length of Last Word 难度:0

时间:2015-08-25 18:27:45      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:

https://leetcode.com/problems/length-of-last-word/

int lengthOfLastWord(char* s) {
    int ans = 0;
    int fans = 0;
    for(int i = 0;s[i];i++){
        if (s[i] ==‘ ‘){fans = ans;ans = 0;while(s[i + 1] == ‘ ‘){i++;}}
        else ans++;
    }
    return ans?ans:fans;
}

  

 

Leetcode 58 Length of Last Word 难度:0

标签:

原文地址:http://www.cnblogs.com/xuesu/p/4757921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!