diff --git a/solutions/343. Integer Break.md b/solutions/343. Integer Break.md index 871451c..5c23bcd 100644 --- a/solutions/343. Integer Break.md +++ b/solutions/343. Integer Break.md @@ -11,7 +11,7 @@ for j in [0, i): ``` ## 思路二 -此题还有一些需要数学知识的题,这里只说一个我想到的而且没在讨论区见过的,更多此题的数学解法可见[讨论区](https://leetcode.com/problems/integer-break/discuss) +此题还有一些需要数学知识的解法,这里只说一个我想到的而且没在讨论区见过的,更多此题的数学解法可见[讨论区](https://leetcode.com/problems/integer-break/discuss) 第一眼看到这个题目就感觉有高中数学题的影子: ```