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

https://github.com/thephoenix77/codingame

Within this collection, you'll discover my C++ implementations for a variety of CodinGame challenges. Each specific problem is neatly arranged in its own directory for easy navigation.
https://github.com/thephoenix77/codingame

Last synced: 4 months ago
JSON representation

Within this collection, you'll discover my C++ implementations for a variety of CodinGame challenges. Each specific problem is neatly arranged in its own directory for easy navigation.

Awesome Lists containing this project

README

          

# CodinGame Solutions Repository

This repository contains my solutions to various puzzles on [CodinGame](https://www.codingame.com/). The puzzles are categorized into Easy, Medium, and Hard difficulty levels. All solutions are implemented in C++.

## Table of Contents

- [Getting Started](#getting-started)
- [Directory Structure](#directory-structure)
- [How to Use](#how-to-use)
- [Contributing](#contributing)
- [License](#license)
- [CodinGame Profile](#codingame-profile)

## Getting Started

1. Clone the repository to your local machine:

```bash
git clone https://github.com/ThePhoenix77/CodinGame.git
```
Navigate to the specific difficulty level:

```bash
cd CodinGame/Easy
```

or

```bash
cd CodinGame/Medium
```
or

```bash
cd CodinGame/Hard
```
Open the solution file (e.g., solution.cpp) in your preferred C++ development environment.

## Directory Structure
Easy/
PuzzleName/

solution in C++
/////////////////
problem to solve

Medium/

... (similar structure as Easy)

Hard/

... (similar structure as Easy)

## How to Use
Compile and run the solution in your C++ compiler.

```bash
g++ solution.cpp -o main
```

## Contributing
If you would like to contribute or improve existing solutions, please follow these steps:

Fork the repository.

Create a new branch for your changes.

```bash
git checkout -b feature/your-feature
```
Make your modifications and commit changes.

```bash
git commit -m "Add/Update feature"
```
Push your changes to your forked repository.

```bash
git push origin feature/your-feature
```
Open a pull request with a detailed description of your changes.

## License
This repository is licensed under the MIT License.

```sql
This template reflects the structure of Easy, Medium, and Hard difficulty levels within your repository. Feel free to adjust it further based on your specific needs.
```
## CodinGame Profile

Feel free to check out my CodinGame profile to see more of my solutions and achievements:

[CodinGame Profile - tn_ix [tboussad]](https://www.codingame.com/profile/2e267f8133343a24e57a0da32e5550544483085)