首页 > 编程 > Java > 正文

[LeetCode] 58. Length of Last Word java

2019-11-06 06:18:56
字体:
来源:转载
供稿:网友
/**58. Length of Last Word * @param s * @returnint */ public int lengthOfLastWord(String s) { if (s == null || s.length() == 0) { return 0; } int end = s.length() - 1; while(end >= 0 && s.charAt(end) == ' ') { end--; } int start = end; while(start >= 0 && s.charAt(start) != ' ') { start--; } return end-start; } //顺序!!!先判断index是否有效,在判断值
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表