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

https://github.com/gabin221/advent_of_code

Ce repo contient des solutions des puzzles proposés pour Advent of Code.
https://github.com/gabin221/advent_of_code

advent-calendar advent-calendar-for-developers advent-calendars-2023 advent-of-code advent-of-code-2023 challenges coding development kotlin open-source personnal-project programming programming-languages python resolutions riddles solutions training

Last synced: 4 months ago
JSON representation

Ce repo contient des solutions des puzzles proposés pour Advent of Code.

Awesome Lists containing this project

README

          

# Advent-of-code

Ce dépôt contient mes solutions aux différents **Advent of Code**, implémentées en **Python** et **Kotlin**.
Chaque année/jour est organisé dans une arborescence claire avec des fichiers d’entrée (`input.txt`) et un squelette de code identique dans chaque langage.

---

## Structure du projet

Advent_of_code/
├── data/ # script copier chaque jour
│ ├── main.py
│ └── Main.kt
├── 2015/
│ └── j1/ # Jour 1 - Année 2015
│ ├── main.py
│ ├── Main.kt
│ ├── input.txt
│ └── j2/ # Jour 2 - Année 2015
│ ├── main.py
│ ├── Main.kt
│ ├── input.txt

## Utilisation

### Python

```bash
cd 2015/j1
python3 main.py
```

### Kotlin

```bash
cd 2015/j1
kotlinc Main.kt -include-runtime -d main.jar && java -jar main.jar
```

### Langages utilisés : Python, Kotlin