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.
- Host: GitHub
- URL: https://github.com/gabin221/advent_of_code
- Owner: Gabin221
- Created: 2024-03-05T20:02:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-01T18:58:16.000Z (4 months ago)
- Last Synced: 2025-09-01T20:42:20.057Z (4 months ago)
- Topics: 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
- Language: Python
- Homepage:
- Size: 1.11 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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