From cd951923386f70662dd27f793008658433a0595e Mon Sep 17 00:00:00 2001 From: SwordsmanYao Date: Fri, 23 Jul 2021 15:36:03 +0800 Subject: [PATCH] =?UTF-8?q?Update=200151.=E7=BF=BB=E8=BD=AC=E5=AD=97?= =?UTF-8?q?=E7=AC=A6=E4=B8=B2=E9=87=8C=E7=9A=84=E5=8D=95=E8=AF=8D.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- problems/0151.翻转字符串里的单词.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/problems/0151.翻转字符串里的单词.md b/problems/0151.翻转字符串里的单词.md index ffa3446a..4b1778c8 100644 --- a/problems/0151.翻转字符串里的单词.md +++ b/problems/0151.翻转字符串里的单词.md @@ -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: