Merge pull request #11 from weijiew/patch-2

Update 0131.分割回文串.md
This commit is contained in:
Carl Sun 2021-05-07 19:31:37 +08:00 committed by GitHub
commit 4fd9cb19aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@
这种题目想用for循环暴力解法可能都不那么容易写出来所以要换一种暴力的方式就是回溯。
一些同学可能想不清楚 回溯究竟是如切割字符串呢?
一些同学可能想不清楚 回溯究竟是如切割字符串呢?
我们来分析一下切割,**其实切割问题类似组合问题**。