【LeetCode】58. Length of Last Wordを解いてみた
はじめに
コーディングテスト対策としてLeetCodeの58. Length of Last Wordを解いていく。
問題文を和訳
- 文字列 s がスペースで区切られたいくつかの単語で構成されている場合、
- 文字列の最後の単語の長さを返します。
- 最後の単語が存在しない場合は、0 を返します。
- 単語は、スペース以外の文字のみで構成される最大の部分文字列です。
- Input: s = "Hello World"
- Output: 5
回答
58_LengthofLastWord.rb
def length_of_last_word(s)
words = s.split(" ")
if words.length > 0
return words[-1].length
else
return 0
end
end
最後に
難易度はEasyでした。
Author And Source
この問題について(【LeetCode】58. Length of Last Wordを解いてみた), 我々は、より多くの情報をここで見つけました https://qiita.com/kazuki-ayimon/items/9e843d0ed01d04955ca5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .