From dfa61dc1aada60a9e189ef52da3ab5cb02b02d16 Mon Sep 17 00:00:00 2001 From: ShusenTang Date: Wed, 11 Dec 2019 15:11:26 +0800 Subject: [PATCH] fix typo --- solutions/343. Integer Break.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) 第一眼看到这个题目就感觉有高中数学题的影子: ```