This repository contains a collection of competitive programming solution files, mainly written in C++, organized by problem category and difficulty.
The workspace includes:
- A set of solution folders such as A, B, C, D, and F
- A separate folder for ACM'sguru problems
- An output folder for generated or compiled output files
- VS Code configuration files in the .vscode folder
- A/ — solutions for problems typically categorized as A-level problems
- B/ — solutions for B-level problems
- C/ — solutions for C-level problems
- D/ — solutions for D-level problems
- F/ — solutions for F-level problems
- ACM'sguru/ — additional problem solutions from the ACM'sguru set
- output/ — output files or intermediate results
- .vscode/ — editor configuration used for local development
Most of the source files in this repository are C++ files with names that correspond to the problem title or a short descriptive identifier. The repository does not appear to include a single top-level build system or project manifest, so each solution is best treated as an individual source file.
- Open any solution file you want to review or run.
- Compile it with a C++ compiler such as g++.
- Run the resulting executable with the appropriate input.
Example:
g++ solution.cpp -o solution
./solutionCoding 🩵 Mani