https://github.com/emre-one/advent-of-code-2023
My Kotlin implementations of Advent-of-Code-2023 puzzles
https://github.com/emre-one/advent-of-code-2023
advent-of-code advent-of-code-2023 advent-of-code-2023-kotlin aoc aoc-2023 aoc-2023-in-kotlin kotlin
Last synced: about 2 months ago
JSON representation
My Kotlin implementations of Advent-of-Code-2023 puzzles
- Host: GitHub
- URL: https://github.com/emre-one/advent-of-code-2023
- Owner: EmRe-One
- License: apache-2.0
- Created: 2023-12-03T18:27:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-26T06:33:44.000Z (5 months ago)
- Last Synced: 2025-02-12T23:48:26.941Z (4 months ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-2023-kotlin, aoc, aoc-2023, aoc-2023-in-kotlin, kotlin
- Language: Kotlin
- Homepage:
- Size: 748 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README


# Advent-of-Code 2023
## Intro
You can find here my [Advent-of-Code 2023](https://adventofcode.com/2023) puzzle solutions written in Kotlin.
## Scripts
To prepare Boilerplate code for the next day, just execute the following gradle task with the day number
```bash
gradle prepareNextDay -Pday=1
```To generate the aoc_tiles, navigate to the aoc_tiles dir, activate python venv and the run the python script:
```bash
cd aoc_tiles
./venv/Scripts/activate.ps1python ./create_tiles.py
```## Solutions
| Day | Test | Solution | Tile |
|------------------------------------------------|-----------------------------------------------------------------------------|---------------------------------------------------------------------|------------------------------------|
| [Day 01](https://adventofcode.com/2023/day/1) | [Day01Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day01Test.kt) | [Day01.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day01.kt) |  |
| [Day 02](https://adventofcode.com/2023/day/2) | [Day02Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day02Test.kt) | [Day02.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day02.kt) |  |
| [Day 03](https://adventofcode.com/2023/day/3) | [Day03Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day03Test.kt) | [Day03.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day03.kt) |  |
| [Day 04](https://adventofcode.com/2023/day/4) | [Day04Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day04Test.kt) | [Day04.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day04.kt) |  |
| [Day 05](https://adventofcode.com/2023/day/5) | [Day05Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day05Test.kt) | [Day05.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day05.kt) |  |
| [Day 06](https://adventofcode.com/2023/day/6) | [Day06Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day06Test.kt) | [Day06.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day06.kt) |  |
| [Day 07](https://adventofcode.com/2023/day/7) | [Day07Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day07Test.kt) | [Day07.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day07.kt) |  |
| [Day 08](https://adventofcode.com/2023/day/8) | [Day08Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day08Test.kt) | [Day08.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day08.kt) |  |
| [Day 09](https://adventofcode.com/2023/day/9) | [Day09Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day09Test.kt) | [Day09.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day09.kt) |  |
| [Day 10](https://adventofcode.com/2023/day/10) | [Day10Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day10Test.kt) | [Day10.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day10.kt) |  |
| [Day 11](https://adventofcode.com/2023/day/11) | [Day11Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day11Test.kt) | [Day11.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day11.kt) |  |
| [Day 12](https://adventofcode.com/2023/day/12) | [Day12Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day12Test.kt) | [Day12.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day12.kt) |  |
| [Day 13](https://adventofcode.com/2023/day/13) | [Day13Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day13Test.kt) | [Day13.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day13.kt) |  |
| [Day 14](https://adventofcode.com/2023/day/14) | [Day14Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day14Test.kt) | [Day14.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day14.kt) |  |
| [Day 15](https://adventofcode.com/2023/day/15) | [Day15Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day15Test.kt) | [Day15.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day15.kt) |  |
| [Day 16](https://adventofcode.com/2023/day/16) | [Day16Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day16Test.kt) | [Day16.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day16.kt) |  |
| [Day 17](https://adventofcode.com/2023/day/17) | [Day17Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day17Test.kt) | [Day17.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day17.kt) |  |
| [Day 18](https://adventofcode.com/2023/day/18) | [Day18Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day18Test.kt) | [Day18.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day18.kt) |  |
| [Day 19](https://adventofcode.com/2023/day/19) | [Day19Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day19Test.kt) | [Day19.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day19.kt) |  |
| [Day 20](https://adventofcode.com/2023/day/20) | [Day20Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day20Test.kt) | [Day20.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day20.kt) |  |
| [Day 21](https://adventofcode.com/2023/day/21) | [Day21Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day21Test.kt) | [Day21.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day21.kt) |  |
| [Day 22](https://adventofcode.com/2023/day/22) | [Day22Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day22Test.kt) | [Day22.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day22.kt) |  |
| [Day 23](https://adventofcode.com/2023/day/23) | [Day23Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day23Test.kt) | [Day23.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day23.kt) |  |
| [Day 24](https://adventofcode.com/2023/day/24) | [Day24Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day24Test.kt) | [Day24.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day24.kt) |  |
| [Day 25](https://adventofcode.com/2023/day/25) | [Day25Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day25Test.kt) | [Day25.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day25.kt) |  |