共计 202 个字符,预计需要花费 1 分钟才能阅读完成。
- 题目要求
-
思路:
- 遍历字符串,遇到空格替换
- 因为字符串 s 长度可变,所以应用的是 while 循环,实时更新字符串的长度
- 残缺代码:
class Solution:
def replaceSpace(self, s: str) -> str:
cur, lenth = 0, len(s)
while cur < lenth:
if s[cur] == " ":
s = s[:cur] + "%20" + s[cur + 1:]
cur += 1
lenth = len(s)
return s
正文完