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
commit c5c060ce81
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