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

This commit is contained in:
SwordsmanYao
2021-07-23 15:36:03 +08:00
committed by GitHub
parent bf2a4581b2
commit cd95192338

View File

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