Skip to content

Commit abaa29b

Browse files
lufftwclaude
andcommitted
docs: wire dp_1d_linear pattern into indexes
- Add DP1DLinear to docs/patterns/README.md pattern table - Add DP1DLinear to README.md pattern documentation section - Add DP1DLinear to README_zh-TW.md pattern documentation section - Add DP 1D Linear navigation to mkdocs.yml 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent c22111e commit abaa29b

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
@@ -428,6 +428,7 @@ Each pattern provides **two learning paths**:
428428
| `ShortestPath` | 💡 [Intuition](docs/patterns/shortest_path/intuition.md) · 🛠️ [Templates](docs/patterns/shortest_path/templates.md) | LeetCode 743, 787, 1368, 1631, 2290 |
429429
| `Trie` | 💡 [Intuition](docs/patterns/trie/intuition.md) · 🛠️ [Templates](docs/patterns/trie/templates.md) | LeetCode 208, 211, 212, 648, 1268 |
430430
| `GreedyCore` | 💡 [Intuition](docs/patterns/greedy_core/intuition.md) · 🛠️ [Templates](docs/patterns/greedy_core/templates.md) | LeetCode 55, 45, 134, 135, 455, 1029 |
431+
| `DP1DLinear` | 💡 [Intuition](docs/patterns/dp_1d_linear/intuition.md) · 🛠️ [Templates](docs/patterns/dp_1d_linear/templates.md) | LeetCode 70, 198, 213, 121, 746 |
431432
| `GridBFSMultiSource` | *coming soon* | LeetCode 994, 286, 542 |
432433
| `KWayMerge` | *coming soon* | LeetCode 23, 21, 88 |
433434
| `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
@@ -433,6 +433,7 @@ scripts\run_tests.bat 0001_two_sum
433433
| `ShortestPath` | 💡 [直覺理解](docs/patterns/shortest_path/intuition.md) · 🛠️ [模板](docs/patterns/shortest_path/templates.md) | LeetCode 743, 787, 1368, 1631, 2290 |
434434
| `Trie` | 💡 [直覺理解](docs/patterns/trie/intuition.md) · 🛠️ [模板](docs/patterns/trie/templates.md) | LeetCode 208, 211, 212, 648, 1268 |
435435
| `GreedyCore` | 💡 [直覺理解](docs/patterns/greedy_core/intuition.md) · 🛠️ [模板](docs/patterns/greedy_core/templates.md) | LeetCode 55, 45, 134, 135, 455, 1029 |
436+
| `DP1DLinear` | 💡 [直覺理解](docs/patterns/dp_1d_linear/intuition.md) · 🛠️ [模板](docs/patterns/dp_1d_linear/templates.md) | LeetCode 70, 198, 213, 121, 746 |
436437
| `GridBFSMultiSource` | *即將推出* | LeetCode 994, 286, 542 |
437438
| `KWayMerge` | *即將推出* | LeetCode 23, 21, 88 |
438439
| `LinkedListInPlaceReversal` | *即將推出* | LeetCode 25, 206, 92 |

docs/patterns/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Each pattern provides **two learning paths** to help you master the concepts:
3939
| `ShortestPath` | 💡 [Intuition](shortest_path/intuition.md) · 🛠️ [Templates](shortest_path/templates.md) | Dijkstra, 0-1 BFS, Bellman-Ford | LeetCode 743, 787, 1368, 1631, 2290 |
4040
| `Trie` | 💡 [Intuition](trie/intuition.md) · 🛠️ [Templates](trie/templates.md) | Prefix tree operations, autocomplete | LeetCode 208, 211, 212, 648, 1268 |
4141
| `GreedyCore` | 💡 [Intuition](greedy_core/intuition.md) · 🛠️ [Templates](greedy_core/templates.md) | Non-interval, non-heap greedy invariants | LeetCode 55, 45, 134, 135, 455, 1029 |
42+
| `DP1DLinear` | 💡 [Intuition](dp_1d_linear/intuition.md) · 🛠️ [Templates](dp_1d_linear/templates.md) | 1D dynamic programming backbone | LeetCode 70, 198, 213, 121, 746 |
4243
| `GridBFSMultiSource` | *coming soon* | Multi-source BFS on grids | LeetCode 994, 286, 542 |
4344
| `KWayMerge` | *coming soon* | Merge K sorted sequences | LeetCode 23, 21, 88 |
4445
| `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
@@ -173,6 +173,9 @@ nav:
173173
- Greedy Core:
174174
- Intuition: patterns/greedy_core/intuition.md
175175
- Templates: patterns/greedy_core/templates.md
176+
- DP 1D Linear:
177+
- Intuition: patterns/dp_1d_linear/intuition.md
178+
- Templates: patterns/dp_1d_linear/templates.md
176179
- 🧠 Mind Maps:
177180
- Overview: mindmaps/index.md
178181
- AI Analysis (English): mindmaps/neetcode-ontology-ai-en.md

0 commit comments

Comments
 (0)