Update 0151.翻转字符串里的单词.md

This commit is contained in:
SwordsmanYao 2021-07-23 15:36:03 +08:00 committed by GitHub
parent bf2a4581b2
commit cd95192338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -301,6 +301,7 @@ class Solution {
```
Python
```Python3
class Solution:
#1.去除多余的空格
@ -349,7 +350,7 @@ class Solution:
return ''.join(l) #输出blue is sky the
'''
```
Go