LeetCode 最後一個單詞的長度(Length of Last Word)
題目
給定一個僅包含大小寫字母和空格 ’ ’ 的字串,返回其最後一個單詞的長度。
如果不存在最後一個單詞,請返回 0 。
說明:一個單詞是指由字母組成,但不包含任何空格的字串。
描述
示例:
輸入: “Hello World”
輸出: 5
思路
以空格為分隔符拆開為字串陣列,取最後一個字串的長度即可
public int lengthOfLastWord(String s) {
s= s.trim();
if(s==null || s.isEmpty()){
return 0;
}
String [] sArray= s.split(" ");
String aString = sArray[sArray.length-1];
if(s.isEmpty()){
return 0;
}
return aString.length();
}
相關推薦
LeetCode 最後一個單詞的長度(Length of Last Word)
題目 給定一個僅包含大小寫字母和空格 ’ ’ 的字串,返回其最後一個單詞的長度。 如果不存在最後一個單詞,請返回 0 。 說明:一個單詞是指由字母組成,但不包含任何空格的字串。 描述 示例:
Leetcode演算法——58、最後單詞的長度(length of last word)
給定一個字串,包含大小寫字母和空格。返回字串中最後一個單詞的長度。 如果最後一個單詞不存在,返回0。 備註: 一個單詞定義為不包含空格的字元序列。 示例: Input: "Hello World" Output: 5 思路 從後向前,尋找到第一個出現的非空格。
LeetCode算法系列:58. Length of Last Word
題目描述: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return
LeetCode 58. 最後一個單詞的長度 Length of Last Word(C語言)
題目描述: 給定一個僅包含大小寫字母和空格 ’ ’ 的字串,返回其最後一個單詞的長度。 如果不存在最後一個單詞,請返回 0 。 說明:一個單詞是指由字母組成,但不包含任何空格的字串。 示例: 輸入: “Hello World” 輸出: 5 題目解答: 方
LeetCode:Length of Last Word(最後一個單詞的長度)
題目 Given a string s consists of upper/lower-case alphabets and empty space characters ’ ‘, return the length of last word in the s
leetcode 58. Length of Last Word(C語言,計算最後一個單詞的長度)19
貼原題: Given a string s consists of upper/lower-case alphabets and empty space characters ’ ‘, r
LeetCode 58. Length of Last Word(最後一個單詞的長度)
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return t
[Leetcode] Length of last word 最後一個單詞的長度
== length spa ast class define 跳過 要求 怎麽辦 Given a string s consists of upper/lower-case alphabets and empty space characters‘ ‘, return th
leetcode-58 length-of-last-word(最後一個單詞的長度)
這道題讓我和難受,我的程式碼醜陋不說,還沒有通過。先看一下題目描述: 從題目描述看確實很簡單,先看一下我的程式碼: 1 public static int lengthOfLastWord(String s) { 2 if (s.length() == 0) { 3
leetcode 58 Length of Last Word(最後一個單詞長度)
題目要求: 給一個包含大寫或者小寫以及空格的字串,返回這個串最後一個單詞的長度。如果最後一個的單詞不存在,那麼返回0。 注意:一個單詞意味著,連續字母之間沒有空格。 示例: Example 1 Input : "Hello World" Output : 5
LeetCode 58 Length of Last Word(最後單詞的長度)
翻譯 給定一個包含大小寫字母和空格字元的字串, 返回該字串中最後一個單詞的長度。 如果最後一個單詞不存在,返回0。 批註: 一個單詞被定義為包含非空字元的字元序列。 例如, 給定 S = "H
length-of-last-word 最後一個單詞的長度
pac char space rac class strong 順序 character string Given a string s consists of upper/lower-case alphabets and empty space characters‘ ‘
LeetCode刷題記錄———第五十八題(最後一個單詞長度)
題目描述 給定一個僅包含大小寫字母和空格 ’ ’ 的字串,返回其最後一個單詞的長度。 如果不存在最後一個單詞,請返回 0 。 說明:一個單詞是指由字母組成,但不包含任何空格的字串。 示例: 輸入: “Hello World” 輸出: 5 思路分析
Leetcode 58 Length of Last Word 句子中最後一個詞的長度
題目描述:Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
LeetCode 58 最後一個單詞長度--python3
給定一個僅包含大小寫字母和空格 ' ' 的字串,返回其最後一個單詞的長度。 如果不存在最後一個單詞,請返回 0 。 說明:一個單詞是指由字母組成,但不包含任何空格的字串。 示例: 輸入: "Hello World" 輸出: 5 ##引入分割所用的
LeetCode——最後一個單詞的長度
方法一:反向迭代器 int lengthOfLastWord(string s) { int count = 0; for(auto item = s.rbegin(); item != s.rend(); item++)
LEETCODE-最後一個單詞的長度
給定一個僅包含大小寫字母和空格 ' ' 的字串,返回其最後一個單詞的長度。 如果不存在最後一個單詞,請返回 0 。 說明:一個單詞是指由字母組成,但不包含任何空格的字串。 示例: 輸入: "Hello World" 輸出: 5 分析: 這個題很簡單,只要從
[LeetCode] Length of Last Word 求末尾單詞的長度
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 d
Length of Last Word(返回最後一個字母的長度)
題目描述: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', ret
leetcode 最後一個單詞的長度
題目描述: 給定一個僅包含大小寫字母和空格 ' ' 的字串,返回其最後一個單詞的長度。 如果不存在最後一個單詞,請返回 0 。 說明:一個單詞是指由字母組成,但不包含任何空格的字串。 示例: 輸入: "Hello World" 輸出: 5 C++程式碼: c