This commit is contained in:
youngyangyang04
2021-07-22 14:59:17 +08:00
parent 81f74d8c48
commit 802f421bd7
21 changed files with 708 additions and 116 deletions

View File

@@ -300,8 +300,9 @@ class Solution {
}
```
python:
```Python3
```Python
class Solution:
#1.去除多余的空格
def trim_spaces(self,s):
@@ -349,7 +350,7 @@ class Solution:
return ''.join(l) #输出blue is sky the
'''
```
Go