劍指offer刷題記錄之替換空格

2021-10-03 13:10:42 字數 541 閱讀 1080

首先新建乙個空字串,然後遍歷每個字元;

如果該字元不是空格,則新增該字元到新建字串末端;

如果該字元是空格,則新增『%20』到新建字串末端。

class

solution

:# s 源字串

defreplacespace

(self, s)

:# write code here

new_s =

''for i in s:

if i ==

' ':

i ='%20'

new_s = new_s + i

return new_s

class

solution

:# s 源字串

defreplacespace

(self, s)

:# write code here

return s.replace(

" ",

"%20"

)

劍指 offer 刷題記錄

任誰都躲不過找工作的問題,好希望能多準備一些時間,奈何時間不等人,每天刷幾道題,並且記錄下來吧 def replacespace s write code here num space 0 new s for i in range len s if i num space 1 for i in ra...

劍指offer刷題記錄

遞迴法 鍊錶的後續遍歷,並用self.k來記錄倒數節點的位置,找到了就返回找到的節點,否則返回none coding utf 8 class listnode def init self,x self.val x self.next none class solution def init self...

劍指offer刷題記錄 綜合

將乙個字串轉換成乙個整數,要求不能使用字串轉換整數的庫函式。數值為0或者字串不是乙個合法的數值則返回0 輸入描述 輸入乙個字串,包括數字字母符號,可以為空 輸出描述 如果是合法的數值表達則返回該數字,否則返回0 做這個題目做的真的很煩,最麻煩的就是判斷當前是否越界。可儲存的最大的正數末位為7,可儲存...