【LeetCode】7. Reverse Integerを解いてみた
はじめに
コーディングテスト対策としてLeetCodeの7. Reverse Integerを解いていく。
問題文を和訳
- 符号付き32ビット整数xを指定すると、その数値を逆にしてxを返します。
- xを逆にすると、値が符号付き32ビット整数の範囲[-2^31,2^31-1]の外に出る場合は、0を返します。
- 環境で64ビット整数(符号付きまたは符号なし)を格納できないと想定します。
- Input: x = 123
- Output: 321
回答
7_ReverseInteger.rb
def reverse(x)
result = 0
isNegative = false
if x < 0
x = x * -1
isNegative = true
end
while x > 0
result = result * 10 + x % 10
x /= 10
end
if -(2**31) <= result && result <= 2**31 -1
if isNegative
return result * -1
else
return result
end
else
return 0
end
end
最後に
難易度はEasyでした。
Author And Source
この問題について(【LeetCode】7. Reverse Integerを解いてみた), 我々は、より多くの情報をここで見つけました https://qiita.com/kazuki-ayimon/items/cb91656a0c80848469f9著者帰属:元の著者の情報は、元の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 .