leetcode 58--string

这个题对于Java相当简单:直接用split对给定的string进行分段。不要忘记边界处理:


图片.png
class Solution {
    public int lengthOfLastWord(String s) {
        if(s.length()<=0)
            return 0;
        String [] temp=s.split(" ");
        if(temp.length==0)
            return 0;
        return temp[temp.length-1].length();
    }
}

你可能感兴趣的:(leetcode 58--string)