【LeetCode】14. Longest Common Prefixを解いてみた
はじめに
コーディングテスト対策としてLeetCodeの14. Longest Common Prefixを解いていく。
問題文を和訳
- 文字列の配列から最も長い共通の接頭語文字列を見つける関数を作成します。
- 共通の接頭語がない場合は、空の文字列 "" を返します。
- Input: strs = ["flower","flow","flight"]
- Output: "fl"
回答
14_LongestCommonPrefix.rb
def longest_common_prefix(strs)
common = ""
for i in 0...strs[0].length do
s = strs[0][i]
for j in 1...strs.length do
if strs[j][i] != s
return common
end
end
common += s
end
return common
end
最後に
難易度はEasyでした。
Author And Source
この問題について(【LeetCode】14. Longest Common Prefixを解いてみた), 我々は、より多くの情報をここで見つけました https://qiita.com/kazuki-ayimon/items/15baa38261c4a1201da1著者帰属:元の著者の情報は、元の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 .