Merge pull request #513 from SwordsmanYao/patch-2

[0151.翻转字符串里的单词]修正一下排版
This commit is contained in:
程序员Carl
2021-07-25 14:50:08 +08:00
committed by GitHub

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