Skip to content

Commit 9d20e6f

Browse files
author
lucifer
committed
feat: $ 1494
1 parent 5ad5915 commit 9d20e6f

File tree

3 files changed

+251
-57
lines changed

3 files changed

+251
-57
lines changed

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,6 @@ leetcode 题解,记录自己的 leetcode 解题之路。
221221
- [1260. 二维网格迁移](./problems/1260.shift-2d-grid.md)
222222
- [1332. 删除回文子序列](./problems/1332.remove-palindromic-subsequences.md)
223223

224-
- [高频考题合集(中等难度)](./collections/medium.md)
225-
- [高频考题合集(困难难度)](./collections/hard.md)
226-
227224
#### 中等难度题目合集
228225

229226
中等题目是力扣比例最大的部分,因此这部分我的题解也是最多的。 大家不要太过追求难题,先把中等难度题目做熟了再说。
@@ -401,12 +398,12 @@ leetcode 题解,记录自己的 leetcode 解题之路。
401398
- [0032. 最长有效括号](./problems/32.longest-valid-parentheses.md)
402399
- [0042. 接雨水](./problems/42.trapping-rain-water.md)
403400
- [0052. N 皇后 II](./problems/52.N-Queens-II.md)
404-
- [0057. 插入区间](problems/57.insert-interval.md) 🆕
401+
- [0057. 插入区间](problems/57.insert-interval.md)
405402
- [0084. 柱状图中最大的矩形](./problems/84.largest-rectangle-in-histogram.md)
406403
- [0085. 最大矩形](./problems/85.maximal-rectangle.md)
407404
- [0124. 二叉树中的最大路径和](./problems/124.binary-tree-maximum-path-sum.md)
408405
- [0128. 最长连续序列](./problems/128.longest-consecutive-sequence.md)
409-
- [0140. 单词拆分 II](problems/140.word-break-ii.md) 🆕
406+
- [0140. 单词拆分 II](problems/140.word-break-ii.md)
410407
- [0145. 二叉树的后序遍历](./problems/145.binary-tree-postorder-traversal.md)
411408
- [0212. 单词搜索 II](./problems/212.word-search-ii.md)
412409
- [0239. 滑动窗口最大值](./problems/239.sliding-window-maximum.md)
@@ -425,8 +422,8 @@ leetcode 题解,记录自己的 leetcode 解题之路。
425422
- [0679. 24 点游戏](./problems/679.24-game.md) 🆕
426423
- [0715. Range 模块](./problems/715.range-module.md) 🆕
427424
- [0768. 最多能完成排序的块 II](./problems/768.max-chunks-to-make-sorted-ii.md) 91
428-
- [0805. 数组的均值分割](./problems/805.split-array-with-same-average.md) 🆕
429-
- [0839. 相似字符串组](./problems/839.similar-string-groups.md) 🆕
425+
- [0805. 数组的均值分割](./problems/805.split-array-with-same-average.md)
426+
- [0839. 相似字符串组](./problems/839.similar-string-groups.md)
430427
- [0887. 鸡蛋掉落](./problems/887.super-egg-drop.md)
431428
- [0895. 最大频率栈](./problems/895.maximum-frequency-stack.md)
432429
- [0975. 奇偶跳](./problems/975.odd-even-jump.md) 🆕
@@ -435,12 +432,13 @@ leetcode 题解,记录自己的 leetcode 解题之路。
435432
- [1203. 项目管理](./problems/1203.sort-items-by-groups-respecting-dependencies.md) 🆕
436433
- [1255. 得分最高的单词集合](./problems/1255.maximum-score-words-formed-by-letters.md)
437434
- [1345. 跳跃游戏 IV](./problems/1435.jump-game-iv.md)
438-
- [1449. 数位成本和为目标值的最大数字](./problems/1449.form-largest-integer-with-digits-that-add-up-to-target.md) 🆕
439-
- [1521. 找到最接近目标值的函数值](./problems/1521.find-a-value-of-a-mysterious-function-closest-to-target.md) 🆕
440-
- [1526. 形成目标数组的子数组最少增加次数](./problems/1526.minimum-number-of-increments-on-subarrays-to-form-a-target-array.md) 🆕
441-
- [1649. 通过指令创建有序数组](./problems/1649.create-sorted-array-through-instructions.md) 🆕
442-
- [1671. 得到山形数组的最少删除次数](./problems/1671.minimum-number-of-removals-to-make-mountain-array.md)🆕
443-
- [1707. 与数组中元素的最大异或值](./problems/5640.maximum-xor-with-an-element-from-array.md) 🆕
435+
- [1449. 数位成本和为目标值的最大数字](./problems/1449.form-largest-integer-with-digits-that-add-up-to-target.md)
436+
- [1494. 并行课程 II](./problems/1494.parallel-courses-ii.md) 🆕
437+
- [1521. 找到最接近目标值的函数值](./problems/1521.find-a-value-of-a-mysterious-function-closest-to-target.md)
438+
- [1526. 形成目标数组的子数组最少增加次数](./problems/1526.minimum-number-of-increments-on-subarrays-to-form-a-target-array.md)
439+
- [1649. 通过指令创建有序数组](./problems/1649.create-sorted-array-through-instructions.md)
440+
- [1671. 得到山形数组的最少删除次数](./problems/1671.minimum-number-of-removals-to-make-mountain-array.md)
441+
- [1707. 与数组中元素的最大异或值](./problems/5640.maximum-xor-with-an-element-from-array.md)
444442

445443
## :trident:  anki 卡片
446444

SUMMARY.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -228,54 +228,54 @@
228228

229229
- [第六章 - 高频考题(困难)](collections/hard.md)
230230

231-
- [LCP 20. 快速公交](problems/lcp20.meChtZ.md) 🆕
232-
- [0004. 寻找两个正序数组的中位数](problems/4.median-of-two-sorted-arrays.md)
233-
- [0023. 合并 K 个升序链表](problems/23.merge-k-sorted-lists.md)
234-
- [0025. K 个一组翻转链表](problems/25.reverse-nodes-in-k-groups.md)
235-
- [0030. 串联所有单词的子串](problems/30.substring-with-concatenation-of-all-words.md)
236-
- [0032. 最长有效括号](problems/32.longest-valid-parentheses.md)
237-
- [0042. 接雨水](problems/42.trapping-rain-water.md)
238-
- [0052. N 皇后 II](problems/52.N-Queens-II.md)
231+
- [LCP 20. 快速公交](./problems/lcp20.meChtZ.md) 🆕
232+
- [0004. 寻找两个正序数组的中位数](./problems/4.median-of-two-sorted-arrays.md)
233+
- [0023. 合并 K 个升序链表](./problems/23.merge-k-sorted-lists.md)
234+
- [0025. K 个一组翻转链表](./problems/25.reverse-nodes-in-k-groups.md)
235+
- [0030. 串联所有单词的子串](./problems/30.substring-with-concatenation-of-all-words.md)
236+
- [0032. 最长有效括号](./problems/32.longest-valid-parentheses.md)
237+
- [0042. 接雨水](./problems/42.trapping-rain-water.md)
238+
- [0052. N 皇后 II](./problems/52.N-Queens-II.md)
239239
- [0057. 插入区间](problems/57.insert-interval.md)
240-
- [0084. 柱状图中最大的矩形](problems/84.largest-rectangle-in-histogram.md)
241-
- [0085. 最大矩形](problems/85.maximal-rectangle.md)
242-
- [0124. 二叉树中的最大路径和](problems/124.binary-tree-maximum-path-sum.md)
243-
- [0128. 最长连续序列](problems/128.longest-consecutive-sequence.md)
240+
- [0084. 柱状图中最大的矩形](./problems/84.largest-rectangle-in-histogram.md)
241+
- [0085. 最大矩形](./problems/85.maximal-rectangle.md)
242+
- [0124. 二叉树中的最大路径和](./problems/124.binary-tree-maximum-path-sum.md)
243+
- [0128. 最长连续序列](./problems/128.longest-consecutive-sequence.md)
244244
- [0140. 单词拆分 II](problems/140.word-break-ii.md)
245-
- [0145. 二叉树的后序遍历](problems/145.binary-tree-postorder-traversal.md)
246-
- [0212. 单词搜索 II](problems/212.word-search-ii.md)
247-
- [0239. 滑动窗口最大值](problems/239.sliding-window-maximum.md)
248-
- [0295. 数据流的中位数](problems/295.find-median-from-data-stream.md)
249-
- [0297. 二叉树的序列化与反序列化](problems/297.serialize-and-deserialize-binary-tree.md) 91
250-
- [0301. 删除无效的括号](problems/301.remove-invalid-parentheses.md)
251-
- [0312. 戳气球](problems/312.burst-balloons.md)
252-
- [330. 按要求补齐数组](problems/330.patching-array.md) 🆕
253-
- [0335. 路径交叉](problems/335.self-crossing.md)
254-
- [0460. LFU 缓存](problems/460.lfu-cache.md)
255-
- [0472. 连接词](problems/472.concatenated-words.md)
245+
- [0145. 二叉树的后序遍历](./problems/145.binary-tree-postorder-traversal.md)
246+
- [0212. 单词搜索 II](./problems/212.word-search-ii.md)
247+
- [0239. 滑动窗口最大值](./problems/239.sliding-window-maximum.md)
248+
- [0295. 数据流的中位数](./problems/295.find-median-from-data-stream.md)
249+
- [0297. 二叉树的序列化与反序列化](./problems/297.serialize-and-deserialize-binary-tree.md) 91
250+
- [0301. 删除无效的括号](./problems/301.remove-invalid-parentheses.md)
251+
- [0312. 戳气球](./problems/312.burst-balloons.md)
252+
- [330. 按要求补齐数组](./problems/330.patching-array.md)
253+
- [0335. 路径交叉](./problems/335.self-crossing.md)
254+
- [0460. LFU 缓存](./problems/460.lfu-cache.md)
255+
- [0472. 连接词](./problems/472.concatenated-words.md)
256256
- [0480. 滑动窗口中位数](./problems/480.sliding-window-median.md) 🆕
257257
- [0483. 最小好进制](./problems/483.smallest-good-base.md) 🆕
258-
- [0488. 祖玛游戏](problems/488.zuma-game.md)
259-
- [0493. 翻转对](problems/493.reverse-pairs.md)
258+
- [0488. 祖玛游戏](./problems/488.zuma-game.md)
259+
- [0493. 翻转对](./problems/493.reverse-pairs.md)
260260
- [0679. 24 点游戏](./problems/679.24-game.md) 🆕
261-
- [0715. Range 模块](problems/715.range-module.md) 🆕
262-
- [0768. 最多能完成排序的块 II](problems/768.max-chunks-to-make-sorted-ii.md) 91
263-
- [0805. 数组的均值分割](./problems/805.split-array-with-same-average.md) 🆕
264-
- [0839. 相似字符串组](./problems/839.similar-string-groups.md) 🆕
265-
- [0887. 鸡蛋掉落](problems/887.super-egg-drop.md)
266-
- [0895. 最大频率栈](problems/895.maximum-frequency-stack.md)
267-
- [0975. 奇偶跳](problems/975.odd-even-jump.md) 🆕
268-
- [1032. 字符流](problems/1032.stream-of-characters.md)
269-
- [1168. 水资源分配优化](problems/1168.optimize-water-distribution-in-a-village.md)
270-
- [1203. 项目管理](problems/1203.sort-items-by-groups-respecting-dependencies.md) 🆕
271-
- [1255. 得分最高的单词集合](problems/1255.maximum-score-words-formed-by-letters.md)
272-
- [1345. 跳跃游戏 IV](problems/1435.jump-game-iv.md) 🆕
273-
- [1449. 数位成本和为目标值的最大数字](problems/1449.form-largest-integer-with-digits-that-add-up-to-target.md) 🆕
274-
- [1521. 找到最接近目标值的函数值](./problems/1521.find-a-value-of-a-mysterious-function-closest-to-target.md) 🆕
275-
- [1526. 形成目标数组的子数组最少增加次数](./problems/1526.minimum-number-of-increments-on-subarrays-to-form-a-target-array.md) 🆕
276-
- [1649. 通过指令创建有序数组](./problems/1649.create-sorted-array-through-instructions.md) 🆕
277-
- [1671. 得到山形数组的最少删除次数](./problems/1671.minimum-number-of-removals-to-make-mountain-array.md)🆕
278-
- [1697. 检查边长度限制的路径是否存在](./problems/1697.checking-existence-of-edge-length-limited-paths.md) 🆕
279-
- [1707. 与数组中元素的最大异或值](./problems/5640.maximum-xor-with-an-element-from-array.md) 🆕
261+
- [0715. Range 模块](./problems/715.range-module.md) 🆕
262+
- [0768. 最多能完成排序的块 II](./problems/768.max-chunks-to-make-sorted-ii.md) 91
263+
- [0805. 数组的均值分割](./problems/805.split-array-with-same-average.md)
264+
- [0839. 相似字符串组](./problems/839.similar-string-groups.md)
265+
- [0887. 鸡蛋掉落](./problems/887.super-egg-drop.md)
266+
- [0895. 最大频率栈](./problems/895.maximum-frequency-stack.md)
267+
- [0975. 奇偶跳](./problems/975.odd-even-jump.md) 🆕
268+
- [1032. 字符流](./problems/1032.stream-of-characters.md)
269+
- [1168. 水资源分配优化](./problems/1168.optimize-water-distribution-in-a-village.md)
270+
- [1203. 项目管理](./problems/1203.sort-items-by-groups-respecting-dependencies.md) 🆕
271+
- [1255. 得分最高的单词集合](./problems/1255.maximum-score-words-formed-by-letters.md)
272+
- [1345. 跳跃游戏 IV](./problems/1435.jump-game-iv.md)
273+
- [1449. 数位成本和为目标值的最大数字](./problems/1449.form-largest-integer-with-digits-that-add-up-to-target.md)
274+
- [1494. 并行课程 II](./problems/1494.parallel-courses-ii.md) 🆕
275+
- [1521. 找到最接近目标值的函数值](./problems/1521.find-a-value-of-a-mysterious-function-closest-to-target.md)
276+
- [1526. 形成目标数组的子数组最少增加次数](./problems/1526.minimum-number-of-increments-on-subarrays-to-form-a-target-array.md)
277+
- [1649. 通过指令创建有序数组](./problems/1649.create-sorted-array-through-instructions.md)
278+
- [1671. 得到山形数组的最少删除次数](./problems/1671.minimum-number-of-removals-to-make-mountain-array.md)
279+
- [1707. 与数组中元素的最大异或值](./problems/5640.maximum-xor-with-an-element-from-array.md)
280280

281281
- [后序](epilogue.md)

0 commit comments

Comments
 (0)