Skip to content

Commit 4e79e05

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

File tree

1 file changed

+2
-2
lines changed
  • Recursion/241.Different-Ways-to-Add-Parentheses

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### 241.Different-Ways-to-Add-Parentheses
22

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

55

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

0 commit comments

Comments
 (0)