We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e79e05 commit 1a00847Copy full SHA for 1a00847
1 file changed
Recursion/241.Different-Ways-to-Add-Parentheses/Readme.md
@@ -1,6 +1,6 @@
1
### 241.Different-Ways-to-Add-Parentheses
2
3
-此题只要想到,任何多项式运算最终可以化简为最后的双目运算。只要遍历这个双目运算符的位置,其将运算符前后两部分都用递归处理,然后这两部分的结果再两两组合即可.
+此题的突破口:任何多项式运算最终可以化简为最后的双目运算。只要遍历这个“最终的”双目运算符的位置,其将运算符前后两部分都用递归处理,然后这两部分的结果再两两组合即可.
4
5
6
[Leetcode Link](https://leetcode.com/problems/different-ways-to-add-parentheses)
0 commit comments