Eleetcode/
├── Array/ ← Java solution files (one file per problem)
├── HolyBook/ ← All reference material — read these, not this file
│ ├── General_HolyBook.md ← Universal patterns, complexity, tradeoffs
│ ├── Array_HolyBook.md ← Array-specific patterns + all problem logs
│ └── Array_Interview.md ← Interview Q&A, follow-ups, company notes
└── README.md
1. READ → Understand problem. Note: sorted? range [1..n]? window?
2. MATCH → Open Array_HolyBook.md Section 1. Find the signal → pattern.
3. CODE → Implement without looking at solutions.
4. ANALYZE → Compare your complexity vs optimal. Note what you missed.
5. SYNC → Update HolyBook + Tracker after every problem.