7. Reverse Integer

7. Reverse Integer Description: 題解: solution 1: 一般思路:對於目標x,先判斷x的正負,記錄符號信息,然後對x做求餘10獲得尾數和整除10獲得高位的操作,將獲得的中間值進行累加得到最終的結果,然後在根據正負號輸出最終的結果。(注意,需要進行越界處理) Python3 class Solution: def reverse(self,x):
相關文章
相關標籤/搜索