Welcome to the Competitive Programming repository! This repository contains solutions to various competitive programming problems which I solved.
This repository features a collection of solutions to competitive programming problems. Each solution is implemented in C++, and the code is organized based on the problem's source or category.
-
Clone the repository:
git clone https://github.com/bixl007/Competitive_Programming.git cd Competitive_Programming
-
Navigate to the desired platform directory:
cd Question_file_name
-
Open the desired problem file and review the solution:
cat problem1.cpp
-
Compile and run the code (if needed):
g++ problem1.cpp -o problem1 ./problem1
Contributions are welcome! If you have a solution to a problem that is not yet covered in this repository, feel free to submit a pull request. Please ensure your code follows the existing structure and is well-documented.
- Fork the repository.
- Create a new branch:
git checkout -b my-feature-branch
- Make your changes and commit them:
git add . git commit -m "Add my solution to problem XYZ"
- Push to your branch:
git push origin my-feature-branch
- Open a pull request on GitHub.
Happy coding!