feat: add NeetCode roadmap extractor with dependency graph
- extract.mjs: idempotent script that fetches neetcode.io JS chunks, extracts topic dependency graph (18 topics, 21 edges) and problems (965 total, 199 NeetCode 150) - out/roadmap.json: full data (graph + all problems + courses) - out/roadmap-neetcode150.json: filtered to NeetCode 150 only - out/roadmap.dot: Graphviz visualization - out/roadmap.org: org-mode with TODO checklists, Python/C++ links - neetcode-roadmap-graph.json: standalone edge list - neetcode-roadmap.dot: standalone DOT file Also reformats subarray table in qn_00.org
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,46 @@
|
||||
digraph NeetCodeRoadmap {
|
||||
rankdir=TB;
|
||||
node [shape=box, style="rounded,filled", fillcolor="#3f4bd1", fontcolor=white, fontname="Helvetica"];
|
||||
edge [color="#555555", arrowsize=0.8];
|
||||
|
||||
"1" [label="Arrays\n&\nHashing"];
|
||||
"2" [label="Two\nPointers"];
|
||||
"6" [label="Binary\nSearch"];
|
||||
"3" [label="Stack"];
|
||||
"4" [label="Sliding\nWindow"];
|
||||
"5" [label="Linked\nList"];
|
||||
"7" [label="Trees"];
|
||||
"8" [label="Tries"];
|
||||
"9" [label="Heap\nPriority\nQueue"];
|
||||
"10" [label="Backtracking"];
|
||||
"11" [label="Graphs"];
|
||||
"12" [label="1-D\nDynamic\nProgramming"];
|
||||
"13" [label="Intervals"];
|
||||
"16" [label="Greedy"];
|
||||
"17" [label="Advanced\nGraphs"];
|
||||
"18" [label="Math\n&\nGeometry"];
|
||||
"14" [label="2-D\nDynamic\nProgramming"];
|
||||
"15" [label="Bit\nManipulation"];
|
||||
|
||||
"1" -> "2";
|
||||
"2" -> "6";
|
||||
"1" -> "3";
|
||||
"2" -> "4";
|
||||
"2" -> "5";
|
||||
"5" -> "7";
|
||||
"6" -> "7";
|
||||
"7" -> "8";
|
||||
"7" -> "9";
|
||||
"7" -> "10";
|
||||
"10" -> "11";
|
||||
"10" -> "12";
|
||||
"9" -> "13";
|
||||
"9" -> "16";
|
||||
"9" -> "17";
|
||||
"11" -> "17";
|
||||
"11" -> "18";
|
||||
"15" -> "18";
|
||||
"11" -> "14";
|
||||
"12" -> "14";
|
||||
"12" -> "15";
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user