◐ Shell
clean mode source ↗

GitHub - rzr8i/MyAlgorithmNotes: Personal notes and implementations of algorithms. Organized by technique. For my own reference and sharing.

Personal notes and implementations from my algorithm learning journey.
Code is mostly written in Go.

How problems are organized

  • Problems are grouped by the technique used to solve them.
  • Each category folder contains a short explanation of the technique, followed by subfolders for specific problems.
  • Each problem has its own folder with explanation and implementation.

📁 Categories

  • Backtracking

    Problems solved by exploring choices and undoing when stuck.
    Includes: N‑Queens, subset sum, Knight's tour.

  • Dynamic Programming

    Problems solved by breaking into overlapping subproblems.
    Includes: Fibonacci, knapsack problem, longest increasing subsequence.