From 5fe52a501996d9a11178647cb3748b6484fa21d6 Mon Sep 17 00:00:00 2001 From: tw2665 <55668073+tw2665@users.noreply.github.com> Date: Fri, 21 May 2021 09:31:00 -0400 Subject: [PATCH] add python solution for 0541.reverseStrII code block head change to python --- problems/0541.反转字符串II.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0541.反转字符串II.md b/problems/0541.反转字符串II.md index 75ac39b0..6171613f 100644 --- a/problems/0541.反转字符串II.md +++ b/problems/0541.反转字符串II.md @@ -134,7 +134,7 @@ class Solution { ``` Python: -```python3 +```python class Solution(object): def reverseStr(self, s, k):