An open API service indexing awesome lists of open source software.

https://github.com/ayush272002/codeforces-sol

Solutions to various problems from Codeforces contests
https://github.com/ayush272002/codeforces-sol

codeforces cpp

Last synced: 9 months ago
JSON representation

Solutions to various problems from Codeforces contests

Awesome Lists containing this project

README

          

# Codeforces Solutions

This repository contains solutions to various problems from Codeforces contests. The solutions are organized by contest and problem, with each file named according to the problem code or contest round.

## Structure
- Top-level `.cpp` files: Solutions to individual Codeforces problems, named by their problem code (e.g., `112A.cpp`, `236A.cpp`).
- Folders for contests: Each folder (e.g., `Codeforces Round 993 (Div. 4)`, `Educational Codeforces Round 173`) contains solutions to all problems from that contest, named by problem letter and title (e.g., `A. Easy Problem.cpp`).

## How to Use
1. **Browse Solutions:**
- Open any `.cpp` file to view the solution for that problem.
- Contest folders contain all problems from that round.
2. **Compile and Run:**
- Use a C++ compiler (e.g., `g++ 112A.cpp -o 112A && ./112A < input.txt`).
- You can provide input via `input.txt` or directly in the terminal.

## Contributing
Feel free to add your own solutions or improve existing ones. Please follow the existing naming conventions for files and folders.

## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.