Skip to content

Commit 5aef576

Browse files
committed
docs(readme): 📝更新目录导航
1 parent 2477aa5 commit 5aef576

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
| [830. Positions of Large Groups](https://leetcode.com/problems/positions-of-large-groups/) | Easy | [--](/array/830/solution1.js) | O(n) | -- |
3535
| [1018. Binary Prefix Divisible By 5](https://leetcode.com/problems/binary-prefix-divisible-by-5/) | Easy | [Math](/array/1018/solution1.js) | O(n) | -- |
3636
| [118. Pascal's Triangle](https://leetcode.com/problems/pascals-triangle/) | Easy | [--](/array/118/solution1.js) | O(n^2) | -- |
37+
| [628. Maximum Product of Three Numbers](https://leetcode.com/problems/maximum-product-of-three-numbers/) | Easy | [排序](/array/628/solution1.js) | O(nlogn) | -- |
38+
3739
### Dynamic Programming
3840

3941
| 题目 | 难度 | 代码 | 时间复杂度 | 分析 |

array/628/solution1.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
* 628. Maximum Product of Three Numbers
55
*
66
* Easy
7+
*
8+
* 104ms 59.86%
9+
* 38.3mb 33.96%
710
*/
811
const maximumProduct = nums => {
912

0 commit comments

Comments
 (0)