博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Length of Last Word
阅读量:5791 次
发布时间:2019-06-18

本文共 526 字,大约阅读时间需要 1 分钟。

Problem

Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.

If the last word does not exist, return 0.

Note

A word is defined as a character sequence consists of non-space characters only.

Example

Input: "Hello World"

Output: 5

Solution

class Solution {    public int lengthOfLastWord(String s) {        String[] strs = s.trim().split(" ");        if (strs == null || strs.length < 1) return 0;        return strs[strs.length-1].length();    }}

转载地址:http://cqwfx.baihongyu.com/

你可能感兴趣的文章
python学习 第一天
查看>>
根据毫秒数计算出当前的“年/月/日/时/分/秒/星期”并不是件容易的事
查看>>
python的图形模块PIL小记
查看>>
shell变量子串
查看>>
iOS的主要框架介绍 (转载)
查看>>
react报错this.setState is not a function
查看>>
poj 1183
查看>>
从根本解决跨域(nginx部署解决方案)
查看>>
javascript实现的一个信息提示的小功能/
查看>>
Centos7.x:开机启动服务的配置和管理
查看>>
HTML5 浏览器返回按钮/手机返回按钮事件监听
查看>>
xss
查看>>
iOS:百度长语音识别具体的封装:识别、播放、进度刷新
查看>>
JS获取服务器时间并且计算距离当前指定时间差的函数
查看>>
华为硬件工程师笔试题
查看>>
jquery居中窗口-页面加载直接居中
查看>>
cd及目录快速切换
查看>>
Unity Shaders and Effects Cookbook (3-5) 金属软高光
查看>>
31-hadoop-hbase-mapreduce操作hbase
查看>>
C++ 代码风格准则:POD
查看>>