Skip to content

Commit 1a00847

Browse files
authored
Update Readme.md
1 parent 4e79e05 commit 1a00847

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Recursion/241.Different-Ways-to-Add-Parentheses
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### 241.Different-Ways-to-Add-Parentheses
22

3-
此题只要想到,任何多项式运算最终可以化简为最后的双目运算。只要遍历这个双目运算符的位置,其将运算符前后两部分都用递归处理,然后这两部分的结果再两两组合即可.
3+
此题的突破口:任何多项式运算最终可以化简为最后的双目运算。只要遍历这个“最终的”双目运算符的位置,其将运算符前后两部分都用递归处理,然后这两部分的结果再两两组合即可.
44

55

66
[Leetcode Link](https://leetcode.com/problems/different-ways-to-add-parentheses)

0 commit comments

Comments
 (0)