Skip to content

Commit bde9862

Browse files
author
wangpeng
committed
docs: add _343_integerBreak
1 parent 6490479 commit bde9862

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu)
44

55
## 说明
6-
- leetcode练习,坚持每天一道,目前已完成157道
6+
- leetcode练习,坚持每天一道,目前已完成158道
77
- 解题语言是Java
88
- 每道题都是可编译运行的
99
- 每道题有自己的方法和他人优秀解法
@@ -34,7 +34,7 @@
3434

3535
- [x] [338. 比特位计数](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_338_countBits.java)
3636

37-
- [ ] [343. 整数拆分](https://leetcode-cn.com/problems/integer-break/)
37+
- [x] [343. 整数拆分](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_343_integerBreak.java)
3838

3939
## 已解题目
4040

@@ -69,7 +69,7 @@
6969
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
7070
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
7171

72-
### 题目列表(更新中--已完成157
72+
### 题目列表(更新中--已完成158
7373

7474
| No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
7575
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -196,6 +196,7 @@
196196
| #328 | [奇偶链表](https://leetcode-cn.com/problems/odd-even-linked-list/) | [OddEvenList](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_328_OddEvenList.java) | [链表](https://leetcode-cn.com/tag/linked-list/) | Medium | |
197197
| #336 | [回文对](https://leetcode-cn.com/problems/palindrome-pairs/) | [PalindromePairs](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_336_palindromePairs_2.java) | [字典树](https://leetcode-cn.com/tag/trie/)[哈希表](<https://leetcode-cn.com/tag/hash-table/>)[字符串](<https://leetcode-cn.com/tag/string/>) | Hard | |
198198
| #338 | [比特位计数](https://leetcode-cn.com/problems/counting-bits/) | [CountBits](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_338_countBits.java) | [位运算](https://leetcode-cn.com/tag/bit-manipulation/)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
199+
| #343 | [整数拆分](https://leetcode-cn.com/problems/integer-break/) | [IntegerBreak](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_343_integerBreak.java) | [数学](<https://leetcode-cn.com/tag/math/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
199200
| #354 | [俄罗斯套娃信封问题](https://leetcode-cn.com/problems/russian-doll-envelopes/) | [MaxEnvelopes.java](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_354_maxEnvelopes_2.java) | [二分查找](<https://leetcode-cn.com/tag/binary-search/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Hard | |
200201
| #376 | [摆动序列](https://leetcode-cn.com/problems/wiggle-subsequence/) | [WiggleMaxLength](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_376_wiggleMaxLength.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
201202
| #402 | [移掉K位数字](https://leetcode-cn.com/problems/remove-k-digits/) | [RemoveKdigits](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_402_removeKdigits.java) | [](https://leetcode-cn.com/tag/heap/)[贪心算法](https://leetcode-cn.com/tag/greedy/) | Medium | |

0 commit comments

Comments
 (0)