Skip to content

Commit 0dee816

Browse files
lufftwclaude
andcommitted
docs(interval_dp): Phase 8 - Add navigation to mkdocs.yml
- Add Interval DP to mkdocs.yml navigation under Patterns section - Add IntervalDP entry to docs/patterns/README.md pattern index - Add IntervalDP to README.md pattern documentation table - Add IntervalDP to README_zh-TW.md pattern documentation table 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 9e45d22 commit 0dee816

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ Each pattern provides **two learning paths**:
437437
| `BitmaskDP` | 💡 [Intuition](docs/patterns/bitmask_dp/intuition.md) · 🛠️ [Templates](docs/patterns/bitmask_dp/templates.md) | LeetCode 78, 847, 1125 |
438438
| `StringDP` | 💡 [Intuition](docs/patterns/string_dp/intuition.md) · 🛠️ [Templates](docs/patterns/string_dp/templates.md) | LeetCode 1143, 72, 516, 10 |
439439
| `MonotonicDeque` | 💡 [Intuition](docs/patterns/monotonic_deque/intuition.md) · 🛠️ [Templates](docs/patterns/monotonic_deque/templates.md) | LeetCode 239, 1438, 862, 1499 |
440+
| `IntervalDP` | 💡 [Intuition](docs/patterns/interval_dp/intuition.md) · 🛠️ [Templates](docs/patterns/interval_dp/templates.md) | LeetCode 312, 1039, 1547, 664 |
440441
| `GridBFSMultiSource` | *coming soon* | LeetCode 994, 286, 542 |
441442
| `KWayMerge` | *coming soon* | LeetCode 23, 21, 88 |
442443
| `LinkedListInPlaceReversal` | *coming soon* | LeetCode 25, 206, 92 |

README_zh-TW.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ scripts\run_tests.bat 0001_two_sum
442442
| `BitmaskDP` | 💡 [直覺理解](docs/patterns/bitmask_dp/intuition.md) · 🛠️ [模板](docs/patterns/bitmask_dp/templates.md) | LeetCode 78, 847, 1125 |
443443
| `StringDP` | 💡 [直覺理解](docs/patterns/string_dp/intuition.md) · 🛠️ [模板](docs/patterns/string_dp/templates.md) | LeetCode 1143, 72, 516, 10 |
444444
| `MonotonicDeque` | 💡 [直覺理解](docs/patterns/monotonic_deque/intuition.md) · 🛠️ [模板](docs/patterns/monotonic_deque/templates.md) | LeetCode 239, 1438, 862, 1499 |
445+
| `IntervalDP` | 💡 [直覺理解](docs/patterns/interval_dp/intuition.md) · 🛠️ [模板](docs/patterns/interval_dp/templates.md) | LeetCode 312, 1039, 1547, 664 |
445446
| `GridBFSMultiSource` | *即將推出* | LeetCode 994, 286, 542 |
446447
| `KWayMerge` | *即將推出* | LeetCode 23, 21, 88 |
447448
| `LinkedListInPlaceReversal` | *即將推出* | LeetCode 25, 206, 92 |

docs/patterns/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Each pattern provides **two learning paths** to help you master the concepts:
4848
| `BitmaskDP` | 💡 [Intuition](bitmask_dp/intuition.md) · 🛠️ [Templates](bitmask_dp/templates.md) | Subset enumeration, BFS with bitmask, set cover | LeetCode 78, 847, 1125 |
4949
| `StringDP` | 💡 [Intuition](string_dp/intuition.md) · 🛠️ [Templates](string_dp/templates.md) | LCS, edit distance, palindrome, regex matching | LeetCode 1143, 72, 516, 10 |
5050
| `MonotonicDeque` | 💡 [Intuition](monotonic_deque/intuition.md) · 🛠️ [Templates](monotonic_deque/templates.md) | Sliding window min/max, bounded range, prefix sum optimization | LeetCode 239, 1438, 862, 1499 |
51+
| `IntervalDP` | 💡 [Intuition](interval_dp/intuition.md) · 🛠️ [Templates](interval_dp/templates.md) | Burst balloons, polygon triangulation, cut stick, strange printer | LeetCode 312, 1039, 1547, 664 |
5152
| `GridBFSMultiSource` | *coming soon* | Multi-source BFS on grids | LeetCode 994, 286, 542 |
5253
| `KWayMerge` | *coming soon* | Merge K sorted sequences | LeetCode 23, 21, 88 |
5354
| `LinkedListInPlaceReversal` | *coming soon* | In-place linked list reversal | LeetCode 25, 206, 92 |

mkdocs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,9 @@ nav:
201201
- Monotonic Deque:
202202
- Intuition: patterns/monotonic_deque/intuition.md
203203
- Templates: patterns/monotonic_deque/templates.md
204+
- Interval DP:
205+
- Intuition: patterns/interval_dp/intuition.md
206+
- Templates: patterns/interval_dp/templates.md
204207
- 🧠 Mind Maps:
205208
- Overview: mindmaps/index.md
206209
- AI Analysis (English): mindmaps/neetcode-ontology-ai-en.md

0 commit comments

Comments
 (0)