Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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++.

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