-
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
- In my
- 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.