7 整數反轉

2021-10-23 11:10:38 字數 1101 閱讀 2505

給出乙個 32 位的有符號整數,你需要將這個整數中每位上的數字進行反轉。

示例 1:

輸入: 123

輸出: 321

示例 2:

輸入: -123

輸出: -321

1.em..為什麼要記錄這題呢,只有這個表情qaq...原來int(x)會直接過濾掉0

class solution:

def reverse(self, x: int) -> int:

x=str(x)

if x[0]=="-":

x=x[1:]

res=""

for i in range(len(x)-1,-1,-1):

if x[i]=="0":continue

else:break

res=-int(x[:i+1][::-1])

return 0 if res<-2**31 else res

else:

res=""

for i in range(len(x)-1,-1,-1):

if x[i]=="0":continue

else:break

res=int(x[:i+1][::-1])

return res if res<=2**31 else 0

class solution(object):

def reverse(self, x):

""":type x: int

:rtype: int

"""if '-' in str(x):

y = str(x).replace("-","")

y = int('-' + y[::-1])

if (-2)**31 < y < 2**31-1:

y = y

else:

y = 0

else:

y = int(str(x)[::-1])

if (-2)**31 < y < 2**31-1:

y = y

else:

y = 0

return y

7 整數反轉

鏈結 給出乙個 32 位的有符號整數,你需要將這個整數中每位上的數字進行反轉。示例 1 輸入 123 輸出 321示例2 輸入 123 輸出 321示例 3 輸入 120 輸出 21注意 假設我們的環境只能儲存得下 32 位的有符號整數,則其數值範圍為 231,231 1 請根據這個假設,如果反轉後...

7 整數反轉

解法一 對輸入數字進行整除和取餘運算,並把輸出值乘以10後與每次取餘的結果相加,直到原資料變為0 每次迴圈,原數對10取餘 結果乘以10,同時原數對10整除。c int reverse int x return rev python def reverse self,x r 0 返回值 flag 1...

7 整數反轉

有些讀者反映我寫的內容太簡單,有時候看不懂思路,我以後會記得寫好思路。一 數值法 1.取出符號位 2.10一次取出x的每一位,再 10變為ans 3.判斷是否超出 output 0if x 0 flag 1else flag 1 x abs x while x 0 res x 10 x int x ...