refactor: move DSA notes to org/study_deck_02/
Restructure NeetCode study materials into a dedicated Anki-exportable deck directory. Separates DSA problem notes from C++ flashcards. - Move roadmap.org from leetcode/out/ to org/study_deck_02/ - Move 200 note files from org/cpp/dsa/ to org/study_deck_02/dsa/ - Add #+PROPERTY: STUDY_DECK_02 to all org files for org-anki export - Simplify roadmap format: properties drawer replaces nested headings - Update NEETCODE backlinks in all note files - Update extract.mjs and scaffold-notes.mjs for new paths - Create org/study_deck_02/AGENTS.md with study workflow docs - Update root and leetcode AGENTS.md
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
* TODO 0098. Validate Binary Search Tree :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0098. Validate Binary Search Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0100. Same Tree :easy:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0100. Same Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0102. Binary Tree Level Order Traversal :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0102. Binary Tree Level Order Traversal][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0104. Maximum Depth of Binary Tree :easy:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0104. Maximum Depth of Binary Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
* TODO 0105. Construct Binary Tree From Preorder And Inorder Traversal :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0105. Construct Binary Tree From Preorder And Inorder Traversal][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0110. Balanced Binary Tree :easy:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0110. Balanced Binary Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0124. Binary Tree Maximum Path Sum :hard:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0124. Binary Tree Maximum Path Sum][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0199. Binary Tree Right Side View :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0199. Binary Tree Right Side View][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0226. Invert Binary Tree :easy:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0226. Invert Binary Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0230. Kth Smallest Element In a Bst :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0230. Kth Smallest Element In a Bst][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0235. Lowest Common Ancestor of a Binary Search Tree :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0235. Lowest Common Ancestor of a Binary Search Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0297. Serialize And Deserialize Binary Tree :hard:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0297. Serialize And Deserialize Binary Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0543. Diameter of Binary Tree :easy:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0543. Diameter of Binary Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0572. Subtree of Another Tree :easy:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0572. Subtree of Another Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 0590. N-ary Tree Postorder Traversal :easy:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*0590. N-ary Tree Postorder Traversal][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 1028. Recover a Tree From Preorder Traversal :hard:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*1028. Recover a Tree From Preorder Traversal][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 1376. Time Needed to Inform All Employees :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*1376. Time Needed to Inform All Employees][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
@@ -0,0 +1,18 @@
|
||||
* TODO 1448. Count Good Nodes In Binary Tree :medium:
|
||||
#+PROPERTY: STUDY_DECK_02
|
||||
:PROPERTIES:
|
||||
:NEETCODE: [[../../roadmap.org::*1448. Count Good Nodes In Binary Tree][Roadmap]]
|
||||
:END:
|
||||
|
||||
** TODO Approach
|
||||
Write your approach here.
|
||||
|
||||
** TODO Python
|
||||
#+begin_src python
|
||||
|
||||
#+end_src
|
||||
|
||||
** TODO C++
|
||||
#+begin_src cpp
|
||||
|
||||
#+end_src
|
||||
Reference in New Issue
Block a user