@@ -343,16 +343,23 @@ Our **AI Ontology Analyzer** processes the entire knowledge graph — API Kernel
343343
344344> ** "Don't memorize 200 problems. Master 10 patterns."**
345345
346- Each API Kernel has a dedicated pattern guide with ** base template** , ** variations** , and ** copy-paste ready code** .
347-
348- | API Kernel | Guide | Problems |
349- | :-----------| :-----:| :---------|
350- | ` SubstringSlidingWindow ` | [ 📖] ( docs/patterns/sliding_window.md ) | LeetCode 3, 76, 159, 209, 340, 438, 567 |
351- | ` TwoPointersTraversal ` | [ 📖] ( docs/patterns/two_pointers.md ) | LeetCode 1, 11, 15, 16, 21, 26, 27, 75, 88, 125, 141, 142, 167, 202, 283, 680, 876 |
352- | ` GridBFSMultiSource ` | * soon* | LeetCode 994, 286, 542 |
353- | ` BacktrackingExploration ` | * soon* | LeetCode 51, 52, 46, 78 |
354- | ` KWayMerge ` | * soon* | LeetCode 23, 21, 88 |
355- | ` BinarySearchBoundary ` | * soon* | LeetCode 4, 33, 34, 35 |
346+ Each pattern provides ** two learning paths** :
347+
348+ | Path | Purpose | Best For |
349+ | :-----| :--------| :---------|
350+ | 💡 ** Intuition** | Understand the "why" through stories and visual explanations | First-time learners, building mental models |
351+ | 🛠️ ** Templates** | Production-ready implementations with problem-specific variations | Interview prep, quick reference |
352+
353+ | API Kernel | Learning Resources | Problems |
354+ | :-----------| :-------------------| :---------|
355+ | ` SubstringSlidingWindow ` | 💡 [ Intuition] ( docs/patterns/sliding_window/intuition.md ) · 🛠️ [ Templates] ( docs/patterns/sliding_window/templates.md ) | LeetCode 3, 76, 159, 209, 340, 438, 567 |
356+ | ` TwoPointersTraversal ` | 💡 [ Intuition] ( docs/patterns/two_pointers/intuition.md ) · 🛠️ [ Templates] ( docs/patterns/two_pointers/templates.md ) | LeetCode 1, 11, 15, 16, 21, 26, 27, 75, 88, 125, 141, 142, 167, 202, 283, 680, 876 |
357+ | ` BacktrackingExploration ` | 💡 [ Intuition] ( docs/patterns/backtracking_exploration/intuition.md ) · 🛠️ [ Templates] ( docs/patterns/backtracking_exploration/templates.md ) | LeetCode 39, 40, 46, 47, 51, 77, 78, 79, 90, 93, 131, 216 |
358+ | ` GridBFSMultiSource ` | * coming soon* | LeetCode 994, 286, 542 |
359+ | ` KWayMerge ` | * coming soon* | LeetCode 23, 21, 88 |
360+ | ` BinarySearchBoundary ` | * coming soon* | LeetCode 4, 33, 34, 35 |
361+ | ` LinkedListInPlaceReversal ` | * coming soon* | LeetCode 25, 206, 92 |
362+ | ` MonotonicStack ` | * coming soon* | LeetCode 84, 85, 496 |
356363
357364👉 ** [ View All Pattern Guides →] ( docs/patterns/README.md ) **
358365
0 commit comments