From ee69e3166d774640018e8110386f9f724d017c30 Mon Sep 17 00:00:00 2001 From: weijiew <49638002+weijiew@users.noreply.github.com> Date: Fri, 7 May 2021 18:23:05 +0800 Subject: [PATCH] =?UTF-8?q?Update=200131.=E5=88=86=E5=89=B2=E5=9B=9E?= =?UTF-8?q?=E6=96=87=E4=B8=B2.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 一个笔误。 --- problems/0131.分割回文串.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0131.分割回文串.md b/problems/0131.分割回文串.md index 509e82b7..dc6587dc 100644 --- a/problems/0131.分割回文串.md +++ b/problems/0131.分割回文串.md @@ -38,7 +38,7 @@ 这种题目,想用for循环暴力解法,可能都不那么容易写出来,所以要换一种暴力的方式,就是回溯。 -一些同学可能想不清楚 回溯究竟是如果切割字符串呢? +一些同学可能想不清楚 回溯究竟是如何切割字符串呢? 我们来分析一下切割,**其实切割问题类似组合问题**。