Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 1.01 KB

File metadata and controls

15 lines (12 loc) · 1.01 KB

Competitive Programming Archive

  • This repository contains solution files for programming contests and essential files for programming competitions. The competitions range from ICPC Regionals and Codeforces Weekly Contests to HackerRank/LeetCode problem implementations. I plan to add a few directories containing debugging templates for dynamically outputting data structures and code snippets for well-known structures and algorithms to save time during competitions.

  • Cleaning compiled binaries

    • In my Makefile, I have the following command: find . -type f -name '*.out' -delete, which recursively deletes all files ending with .out.
    • In Terminal, run the following command: make clean

Problems (to add so far)

  • DP Coin Change
  • DP Knapsack 0/1
  • [DP Longest Common Subsequence]
  • [DP Longest Increasing Subsequence]
  • BFS, DFS, Topological Sorting, Counting Islands, Graph Traversals.
  • Prefix Sums / Min-max Query.