【LeetCode】67. Add Binaryを解いてみた
はじめに
コーディングテスト対策としてLeetCodeの67. Add Binaryを解いていく。
問題文を和訳
- 2つの二進数文字列aとbが与えられた場合、
- それらの合計を二進数文字列として返します。
- Input: a = "1010", b = "1011"
- Output: "10101"
回答
67_AddBinary.rb
def add_binary(a, b)
return (a.to_i(2) + b.to_i(2)).to_s(2)
end
最後に
難易度はEasyでした。
Author And Source
この問題について(【LeetCode】67. Add Binaryを解いてみた), 我々は、より多くの情報をここで見つけました https://qiita.com/kazuki-ayimon/items/d2c5b9a09636337a3ff9著者帰属:元の著者の情報は、元の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 .