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.
- Host: GitHub
- URL: https://github.com/thephoenix77/codingame
- Owner: ThePhoenix77
- License: mit
- Created: 2024-02-16T13:56:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-19T21:54:06.000Z (over 1 year ago)
- Last Synced: 2025-01-19T15:39:52.437Z (9 months ago)
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 solveMedium/
... (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 ProfileFeel 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)