This commit is contained in:
2026-06-01 18:12:40 +08:00
parent c9fe2fab76
commit 8c9f58fdfb
5 changed files with 168 additions and 10 deletions
+13
View File
@@ -23,6 +23,8 @@ An Anki-exportable study deck for NeetCode DSA problems.
org/study_deck_02/
├── AGENTS.md ← you are here
├── roadmap.org ← generated by leetcode/extract.mjs
├── toolkit/
│ └── tricks.org ← common patterns & templates
└── dsa/
├── arrays-hashing/
│ ├── 0217-contains-duplicate.org
@@ -121,3 +123,14 @@ This deck starts with NeetCode 150. To add more:
header. They'll all export to the same Anki deck.
- **Flashcards** — add `** Front` / `** Back` sections to any note
for Anki-style cards (see root `AGENTS.md` for format).
## Backlinking Convention
Every `.org` file should link back to `roadmap.org` via a property:
- Problem notes use `:NEETCODE:` linking to the roadmap heading
- Toolkit/tricks use `:ROADMAP:` linking to a relevant problem
- Roadmap entries use `:TRICK:` linking to relevant tricks
This keeps the web of links navigable in both directions — from
roadmap to notes, from notes to tricks, and tricks back to problems.