Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emre-one/advent-of-code-2022
My Kotlin implementations of Advent-of-Code-2022 puzzles
https://github.com/emre-one/advent-of-code-2022
advent-of-code advent-of-code-2022 aoc aoc-2022 aoc-2022-in-kotlin kotlin
Last synced: about 1 month ago
JSON representation
My Kotlin implementations of Advent-of-Code-2022 puzzles
- Host: GitHub
- URL: https://github.com/emre-one/advent-of-code-2022
- Owner: EmRe-One
- License: apache-2.0
- Created: 2022-11-20T23:15:32.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-14T02:57:21.000Z (about 1 year ago)
- Last Synced: 2024-04-14T21:13:15.983Z (10 months ago)
- Topics: advent-of-code, advent-of-code-2022, aoc, aoc-2022, aoc-2022-in-kotlin, kotlin
- Language: Kotlin
- Homepage:
- Size: 614 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Kotlin](https://img.shields.io/badge/Kotlin-grey?logo=Kotlin&style=for-the-badge)
![](https://img.shields.io/badge/📅%20days-25-005060?style=for-the-badge)
![](https://img.shields.io/badge/⭐%20stars-50-005060?style=for-the-badge)# Advent-of-Code 2022
## Intro
You can find here my [Advent-of-Code 2022](https://adventofcode.com/2022) puzzle solutions written in Kotlin.
## Solutions
| Day | Test | Solution | Tile |
|------------------------------------------------|-----------------------------------------------------------------------------|---------------------------------------------------------------------|-------------------------------|
| [Day 01](https://adventofcode.com/2022/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/01.png) |
| [Day 02](https://adventofcode.com/2022/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/02.png) |
| [Day 03](https://adventofcode.com/2022/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/03.png) |
| [Day 04](https://adventofcode.com/2022/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/04.png) |
| [Day 05](https://adventofcode.com/2022/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/05.png) |
| [Day 06](https://adventofcode.com/2022/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/06.png) |
| [Day 07](https://adventofcode.com/2022/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/07.png) |
| [Day 08](https://adventofcode.com/2022/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/08.png) |
| [Day 09](https://adventofcode.com/2022/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/09.png) |
| [Day 10](https://adventofcode.com/2022/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/10.png) |
| [Day 11](https://adventofcode.com/2022/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/11.png) |
| [Day 12](https://adventofcode.com/2022/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/12.png) |
| [Day 13](https://adventofcode.com/2022/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/13.png) |
| [Day 14](https://adventofcode.com/2022/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/14.png) |
| [Day 15](https://adventofcode.com/2022/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/15.png) |
| [Day 16](https://adventofcode.com/2022/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/16.png) |
| [Day 17](https://adventofcode.com/2022/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/17.png) |
| [Day 18](https://adventofcode.com/2022/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/18.png) |
| [Day 19](https://adventofcode.com/2022/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/19.png) |
| [Day 20](https://adventofcode.com/2022/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/20.png) |
| [Day 21](https://adventofcode.com/2022/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/21.png) |
| [Day 22](https://adventofcode.com/2022/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/22.png) |
| [Day 23](https://adventofcode.com/2022/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/23.png) |
| [Day 24](https://adventofcode.com/2022/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/24.png) |
| [Day 25](https://adventofcode.com/2022/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/25.png) |---
** The AoC Tiles are created with an adjusted python script from [LiquidFun](https://github.com/LiquidFun/adventofcode/tree/main/AoCTiles)