You can find here my Advent-of-Code 2023 puzzle solutions written in Kotlin.
To prepare Boilerplate code for the next day, just execute the following gradle task with the day number
gradle prepareNextDay -Pday=1
To generate the aoc_tiles, navigate to the aoc_tiles dir, activate python venv and the run the python script:
cd aoc_tiles
./venv/Scripts/activate.ps1
python ./create_tiles.py
** The AoC Tiles are created with an adjusted python script from LiquidFun