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

58. Length of Last Word

时间:2018-03-15 17:54:10      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:toc   array   int   return   str   problem   com   script   last   

原题链接:https://leetcode.com/problems/length-of-last-word/description/
这题目没啥难度,稍微懂点编程均可独立完成:

class Solution {
    public int lengthOfLastWord(String s) {
        int len = 0;
        
        char[] chars = s.toCharArray();
        for (int i = chars.length - 1; i >= 0; i--) {
            if (chars[i] == ‘ ‘) {
                if (len > 0) {
                    return len;
                }
            } else {
                len++;
            }
        }
        
        return len;
    }
}

58. Length of Last Word

标签:toc   array   int   return   str   problem   com   script   last   

原文地址:https://www.cnblogs.com/optor/p/8574626.html

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