Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 1.19 KB

File metadata and controls

21 lines (16 loc) · 1.19 KB

DSA Problem Tracking

Track your problem-solving progress with this table.

# Problem Name URL Difficulty Status Date Solved Revision 1 Code 1 Revision 2 Code 2 Revision 3 Code 3 Patterns Used Time Complexity Space Complexity Notes Excalidraw File Tricks
1 Example Problem Link Medium Solved 2025-03-27 Code Code Code Two Pointers, Sliding Window O(n) O(1) Edge case: empty input Diagram Use prefix sum to optimize
2

Legend

  • ✅ = Completed
  • ❌ = Not yet attempted
  • 🔄 = Needs reattempt

Code Solutions

Code 1: Example Problem

# Initial Solution
def example_problem(arr):
    return sum(arr)