feat: populate note files with problem descriptions and code stubs

Add populate-notes.mjs that fetches problem descriptions and
Python/C++ code stubs from LeetCode's GraphQL API. Populated
all 197 NeetCode 150 note files with:
- Problem description (examples, constraints)
- Python code stub (function signature)
- C++ code stub (function signature + includes)

API responses cached in leetcode/.cache/leetcode/ for instant re-runs.
This commit is contained in:
2026-06-01 17:22:07 +08:00
parent e798e449bd
commit 1dec88aaf2
198 changed files with 10459 additions and 534 deletions
@@ -1,18 +1,86 @@
#+PROPERTY: STUDY_DECK_02
* TODO 0901. Online Stock Span :medium:
:PROPERTIES:
:NEETCODE: [[file:../../roadmap.org::*0901. Online Stock Span][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0901. Online Stock Span][0901. Online Stock Span]]
:END:
Design an algorithm that collects daily price quotes for some stock and returns *the span* of that stock's price for the current day.
The *span* of the stock's price in one day is the maximum number of consecutive days (starting from that day and going backward) for which the stock price was less than or equal to the price of that day.
- For example, if the prices of the stock in the last four days is ~[7,2,1,2]~ and the price of the stock today is ~2~, then the span of today is ~4~ because starting from today, the price of the stock was less than or equal ~2~ for ~4~ consecutive days.
- Also, if the prices of the stock in the last four days is ~[7,34,1,2]~ and the price of the stock today is ~8~, then the span of today is ~3~ because starting from today, the price of the stock was less than or equal ~8~ for ~3~ consecutive days.
Implement the ~StockSpanner~ class:
- ~StockSpanner()~ Initializes the object of the class.
- ~int next(int price)~ Returns the *span* of the stock's price given that today's price is ~price~.
*Example 1:*
#+begin_src
Input
["StockSpanner", "next", "next", "next", "next", "next", "next", "next"]
[[], [100], [80], [60], [70], [60], [75], [85]]
Output
[null, 1, 1, 1, 2, 1, 4, 6]
Explanation
StockSpanner stockSpanner = new StockSpanner();
stockSpanner.next(100); // return 1
stockSpanner.next(80); // return 1
stockSpanner.next(60); // return 1
stockSpanner.next(70); // return 2
stockSpanner.next(60); // return 1
stockSpanner.next(75); // return 4, because the last 4 prices (including today's price of 75) were less than or equal to today's price.
stockSpanner.next(85); // return 6
#+end_src
*Constraints:*
- ~1 <= price <= 10^{5}~
- At most ~10^{4}~ calls will be made to ~next~.
** TODO Approach
Write your approach here.
** TODO Python
#+begin_src python
class StockSpanner:
def __init__(self):
def next(self, price: int) -> int:
# Your StockSpanner object will be instantiated and called as such:
# obj = StockSpanner()
# param_1 = obj.next(price)
#+end_src
** TODO C++
#+begin_src cpp
class StockSpanner {
public:
StockSpanner() {
}
int next(int price) {
}
};
/**
* Your StockSpanner object will be instantiated and called as such:
* StockSpanner* obj = new StockSpanner();
* int param_1 = obj->next(price);
*/
#+end_src