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

[LeetCode] Length of Last Word

时间:2014-09-11 23:48:02      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:blog   io   java   ar   for   div   sp   log   on   

public class Solution {
    public int lengthOfLastWord(String s) {
        int lastLength = 0;
        int nowLength = 0;
        
        for (int i=0; i<s.length(); i++) {
            if(s.charAt(i)==‘ ‘) {
                if (nowLength!=0) lastLength=nowLength;
                nowLength=0;
            }
            else 
                nowLength++;
        }
        
        if (nowLength!=0) lastLength = nowLength;
        
        return lastLength;
    }
}

 

[LeetCode] Length of Last Word

标签:blog   io   java   ar   for   div   sp   log   on   

原文地址:http://www.cnblogs.com/yuhaos/p/3967434.html

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