LeetCode Sources

Raw problem solutions and notes. The LLM compiles these into structured wiki entries under DSA Wiki and Patterns Wiki.

File Template

When adding a new problem, use this format:

---
title: "LC-XXXX: Problem Name"
source_type: leetcode
source_url: https://leetcode.com/problems/problem-slug/
difficulty: easy | medium | hard
tags:
  - source
  - leetcode
  - pattern-name
date: YYYY-MM-DD
processed: false
---
 
## Problem Statement
(paste or summarize)
 
## My Solution (Go)
```go
// solution here

Approach

(describe your thinking)

Complexity

  • Time: O(?)
  • Space: O(?)

Notes

(anything you learned, mistakes made, edge cases)