Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arbinzaman/problem-solve-codes
Here i push my problem solving and practice codes with C++.
https://github.com/arbinzaman/problem-solve-codes
atcoder beecrowd codechef codeforces cpp hackathon problems-solving
Last synced: 28 days ago
JSON representation
Here i push my problem solving and practice codes with C++.
- Host: GitHub
- URL: https://github.com/arbinzaman/problem-solve-codes
- Owner: arbinzaman
- Created: 2024-06-06T19:59:16.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-27T17:52:47.000Z (about 2 months ago)
- Last Synced: 2024-10-28T04:11:41.686Z (about 2 months ago)
- Topics: atcoder, beecrowd, codechef, codeforces, cpp, hackathon, problems-solving
- Language: C++
- Homepage:
- Size: 511 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Problem Solving Codes
This repository contains my solutions to various competitive programming problems from platforms such as Codeforces and Beecrowd.
## Table of Contents
- [Introduction](#introduction)
- [Repository Structure](#repository-structure)
- [Codeforces](#codeforces)
- [Beecrowd](#beecrowd)
- [How to Use](#how-to-use)
- [Contributing](#contributing)
- [License](#license)## Introduction
Welcome to my repository of problem-solving codes! Here, you will find my solutions to problems I've tackled on Codeforces and Beecrowd. These solutions are written in various programming languages and organized by problem categories and difficulty levels.
## Repository Structure
The repository is organized as follows:
.
├── codeforces
│ ├── contests
│ │ ├── contest_name
│ │ │ ├── problem_code
│ │ │ │ ├── solution_language.extension
│ │ │ │ └── ...
│ │ └── ...
│ └── practice
│ ├── difficulty_level
│ │ ├── problem_code
│ │ │ ├── solution_language.extension
│ │ │ └── ...
│ └── ...
├── beecrowd
│ ├── problem_code
│ │ ├── solution_language.extension
│ │ └── ...
│ └── ...
└── README.md## Codeforces
In the `codeforces` directory, you'll find two main subdirectories:
- `contests`: Contains solutions to problems from specific Codeforces contests.
- `practice`: Contains solutions to practice problems, categorized by difficulty level.## Beecrowd
In the `beecrowd` directory, you will find solutions to problems from the Beecrowd platform. Each problem is stored in its own subdirectory, named after the problem code.
## How to Use
1. Clone the repository:
```sh
git clone https://github.com/yourusername/problem-solving-codes.git
Navigate to the desired directory to find the solution you're interested in.
Open the solution file to view the code.
Contributing
Contributions are welcome! If you'd like to contribute, please fork the repository, create a new branch, and submit a pull request with your changes.Fork the repository
Create a new branch (git checkout -b feature/your-feature)
Commit your changes (git commit -am 'Add some feature')
Push to the branch (git push origin feature/your-feature)
Create a new Pull Request