Skip to content

Commit 3958cc1

Browse files
Update 剑指Offer05.替换空格.md
1 parent abcedd4 commit 3958cc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

problems/剑指Offer05.替换空格.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ func replaceSpace(s string) string {
265265

266266

267267

268-
python:
269-
####因为字符串是不可变类型,所以操作字符串需要将其转换为列表,因此空间复杂度不可能不为O(1)
268+
#python:
269+
#因为字符串是不可变类型,所以操作字符串需要将其转换为列表,因此空间复杂度不可能不为O(1)
270270
```python
271271
class Solution:
272272
def replaceSpace(self, s: str) -> str:

0 commit comments

Comments
 (0)