【LeetCode】66. Plus Oneを解いてみた
はじめに
コーディングテスト対策としてLeetCodeの66. Plus Oneを解いていく。
問題文を和訳
- 負でない整数を表す空でない配列を指定すると、整数に 1 を加えます。
- 最も大きい位の数字がリストの先頭にあり、
- 配列の各要素に 1 つの数字が含まれるように数字が格納されます。
- 数値 0 を除いて、整数には先頭に0が含まれていないと見なすことができます。
- Input: digits = [1,2,3]
- Output: [1,2,4]
- Explanation: The array represents the integer 123.
回答
66_PlusOne.rb
def plus_one(digits)
if digits.length == 0
digits.push(1)
elsif digits[-1] == 9
digits = plus_one(digits[0...digits.length - 1])
digits.push(0)
else
digits[-1] += 1
end
return digits
end
最後に
難易度はEasyでした。
Author And Source
この問題について(【LeetCode】66. Plus Oneを解いてみた), 我々は、より多くの情報をここで見つけました https://qiita.com/kazuki-ayimon/items/180f215dfb3d3759bec0著者帰属:元の著者の情報は、元の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 .