{"id":22662882,"url":"https://github.com/emre-one/advent-of-code-2024","last_synced_at":"2025-07-25T16:35:03.714Z","repository":{"id":265913385,"uuid":"896667908","full_name":"EmRe-One/advent-of-code-2024","owner":"EmRe-One","description":"My Kotlin implementations of Advent-of-Code-2024 puzzles","archived":false,"fork":false,"pushed_at":"2024-12-26T04:54:31.000Z","size":755,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T09:13:38.648Z","etag":null,"topics":["advent-of-code","advent-of-code-2024","advent-of-code-2024-kotlin","aoc","aoc-2024","aoc-2024-in-kotlin","kotlin"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EmRe-One.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-01T01:18:19.000Z","updated_at":"2024-12-26T04:54:34.000Z","dependencies_parsed_at":"2024-12-01T14:24:45.773Z","dependency_job_id":"c483cebf-185c-46bc-a945-ff52be255e3f","html_url":"https://github.com/EmRe-One/advent-of-code-2024","commit_stats":null,"previous_names":["emre-one/advent-of-code-2024"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmRe-One%2Fadvent-of-code-2024","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmRe-One%2Fadvent-of-code-2024/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmRe-One%2Fadvent-of-code-2024/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EmRe-One%2Fadvent-of-code-2024/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EmRe-One","download_url":"https://codeload.github.com/EmRe-One/advent-of-code-2024/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246162153,"owners_count":20733357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["advent-of-code","advent-of-code-2024","advent-of-code-2024-kotlin","aoc","aoc-2024","aoc-2024-in-kotlin","kotlin"],"created_at":"2024-12-09T12:16:21.961Z","updated_at":"2025-03-29T09:13:42.191Z","avatar_url":"https://github.com/EmRe-One.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Kotlin](https://img.shields.io/badge/Kotlin-grey?logo=Kotlin\u0026style=for-the-badge)\n![](https://img.shields.io/badge/📅%20days-25-005060?style=for-the-badge)\n![](https://img.shields.io/badge/⭐%20stars-50-005060?style=for-the-badge)\n\n# Advent-of-Code 2024\n\n## Intro\n\nYou can find here my [Advent-of-Code 2024](https://adventofcode.com/2024) puzzle solutions written in Kotlin.\n\n## Scripts\n\nTo prepare Boilerplate code for the next day, just execute the following gradle task with the day number\n```bash \ngradle prepareNextDay -Pday=1\n```\n\nTo generate the aoc_tiles, navigate to the aoc_tiles dir, activate python venv and the run the python script:\n```bash\ncd aoc_tiles\n./venv/Scripts/activate.ps1 \n\npython ./create_tiles.py\n```\n\n## Solutions\n\n| Day                                           | Test                                                                        | Solution                                                            | Tile                               |\n|-----------------------------------------------|-----------------------------------------------------------------------------|---------------------------------------------------------------------|------------------------------------|\n| [Day 01](https://adventofcode.com/2024/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 01](./aoc_tiles/2024/01.png) |\n| [Day 02](https://adventofcode.com/2024/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 02](./aoc_tiles/2024/02.png) |\n| [Day 03](https://adventofcode.com/2024/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 03](./aoc_tiles/2024/03.png) |\n| [Day 04](https://adventofcode.com/2024/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 04](./aoc_tiles/2024/04.png) |\n| [Day 05](https://adventofcode.com/2024/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 05](./aoc_tiles/2024/05.png) |\n| [Day 06](https://adventofcode.com/2024/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 06](./aoc_tiles/2024/06.png) |\n| [Day 07](https://adventofcode.com/2024/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 07](./aoc_tiles/2024/07.png) |\n| [Day 08](https://adventofcode.com/2024/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 08](./aoc_tiles/2024/08.png) |\n| [Day 09](https://adventofcode.com/2024/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 09](./aoc_tiles/2024/09.png) |\n| [Day 10](https://adventofcode.com/2024/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 10](./aoc_tiles/2024/10.png) |\n| [Day 11](https://adventofcode.com/2024/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 11](./aoc_tiles/2024/11.png) |\n| [Day 12](https://adventofcode.com/2024/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 12](./aoc_tiles/2024/12.png) |\n| [Day 13](https://adventofcode.com/2024/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 13](./aoc_tiles/2024/13.png) |\n| [Day 14](https://adventofcode.com/2024/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 14](./aoc_tiles/2024/14.png) |\n| [Day 15](https://adventofcode.com/2024/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 15](./aoc_tiles/2024/15.png) |\n| [Day 16](https://adventofcode.com/2024/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 16](./aoc_tiles/2024/16.png) |\n| [Day 17](https://adventofcode.com/2024/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 17](./aoc_tiles/2024/17.png) |\n| [Day 18](https://adventofcode.com/2024/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 18](./aoc_tiles/2024/18.png) |\n| [Day 19](https://adventofcode.com/2024/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 19](./aoc_tiles/2024/19.png) |\n| [Day 20](https://adventofcode.com/2024/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 20](./aoc_tiles/2024/20.png) |\n| [Day 21](https://adventofcode.com/2024/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 21](./aoc_tiles/2024/21.png) |\n| [Day 22](https://adventofcode.com/2024/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 22](./aoc_tiles/2024/22.png) |\n| [Day 23](https://adventofcode.com/2024/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 23](./aoc_tiles/2024/23.png) |\n| [Day 24](https://adventofcode.com/2024/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 24](./aoc_tiles/2024/24.png) |\n| [Day 25](https://adventofcode.com/2024/day/25) | [Day25Test.kt](./src/test/kotlin/tr/emreone/adventofcode/days/Day25Test.kt) | [Day25.kt](./src/main/kotlin/tr/emreone/adventofcode/days/Day25.kt) | ![Day 25](./aoc_tiles/2024/25.png) |\n\u003c!-- $1 --\u003e\n\n---\n\n** The AoC Tiles are created with an adjusted python script from [LiquidFun](https://github.com/LiquidFun/adventofcode/tree/main/AoCTiles)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femre-one%2Fadvent-of-code-2024","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femre-one%2Fadvent-of-code-2024","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femre-one%2Fadvent-of-code-2024/lists"}