Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lastaapps/advent-of-code
Advent of code 2022+ in Kotlin, Rust, Racket, ...
https://github.com/lastaapps/advent-of-code
aoc aoc-2022 aoc-2022-in-kotlin aoc-2023
Last synced: about 1 month ago
JSON representation
Advent of code 2022+ in Kotlin, Rust, Racket, ...
- Host: GitHub
- URL: https://github.com/lastaapps/advent-of-code
- Owner: Lastaapps
- Created: 2022-12-01T09:34:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T20:38:05.000Z (10 months ago)
- Last Synced: 2024-02-15T21:37:08.704Z (10 months ago)
- Topics: aoc, aoc-2022, aoc-2022-in-kotlin, aoc-2023
- Language: Kotlin
- Homepage:
- Size: 869 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of code
These are my solutions of the tasks from the
[Advent of code](https://adventofcode.com/)
since the year 2022.
All the tasks I have misses are missed because of time constraints (uni + work).I recommend you to also try the
[AoC Wheel of names](https://wheelofnames.com/4md-rr4)
or similar to choose your daily language!## Structure
The basic project structure is made for Kotlin as it has the most complicated
build setup from all the languages used.
All the code is located in `src/main/kotlin/y20XX/dayYY.idk`.## Notice
No AI tools were used during the development!## Index
### 2023First 7 days were chosen bye the wheel of fortune.
Unless stated otherwise all the code was written
without "consulting with internet communities".
- [day01](src/main/kotlin/y2023/day01.rkt) (Racket)
- [day02](src/main/kotlin/y2023/day02.asm) (RISC-V ASM)
- [day03](src/main/kotlin/y2023/day03/day03.hc) ([Holy C](https://rosettacode.org/wiki/Category:HolyC))
- [day04](src/main/kotlin/y2023/day04.ua) ([UIUA](https://www.uiua.org/))
- [day05](src/main/kotlin/y2023/day05.py) (Python)
- [day06](src/main/kotlin/y2023/day06/day06.go) (Go)
- [day07](src/main/kotlin/y2023/day07/day07.cob) (COBOL and Python)
- [day08](src/main/kotlin/y2023/day08/day08.py) (Python) *with help*
- [day09](src/main/kotlin/y2023/day09/Main.kt) (Kotlin)
- [day10](src/main/kotlin/y2023/day10/Main.kt) (Kotlin)
- [day11](src/main/kotlin/y2023/day11/Main.kt) (Kotlin)
- [day12](src/main/kotlin/y2023/day12/Main.kt) (Kotlin)
- [day13](src/main/kotlin/y2023/day13/Main.kt) (Kotlin)
- [day14](src/main/kotlin/y2023/day14/Main.kt) (Kotlin)
- [day15](src/main/kotlin/y2023/day15/Main.kt) (Kotlin)
- [day16](src/main/kotlin/y2023/day16/day16.cpp) (C++) [DFS]
- [day17](src/main/kotlin/y2023/day17/day17.cpp) (C++) [Dijkstra]
- [day18](src/main/kotlin/y2023/day18/day18.cpp) (C++) [Grid polygon area]
- [day19](src/main/kotlin/y2023/day19/Main.kt) (Kotlin)
- [day20](src/main/kotlin/y2023/day20/day20.cpp) (C++) *with help*
- [day21](src/main/kotlin/y2023/day21/src/main.rs) (Rust)
- [day22](src/main/kotlin/y2023/day22/src/main.rs) (Rust)
- [day23](src/main/kotlin/y2023/day23/src/main.rs) (Rust) [Longest path]
- [day24](src/main/kotlin/y2023/day24/src/main.rs) (Rust) [Advanced linear algebra] /small help from Reddit/
- [day25](src/main/kotlin/y2023/day25/day25.cpp) (C++) [Network flows, Ford Fulkerson]### 2022
All the code is written in Kotlin.- [day01](src/main/kotlin/y2022/day01/Main.kt)
- [day02](src/main/kotlin/y2022/day02/Main.kt)
- [day03](src/main/kotlin/y2022/day03/Main.kt)
- [day04](src/main/kotlin/y2022/day04/Main.kt)
- [day05](src/main/kotlin/y2022/day05/Main.kt)
- [day06](src/main/kotlin/y2022/day06/Main.kt)
- [day07](src/main/kotlin/y2022/day07/Main.kt)
- [day08](src/main/kotlin/y2022/day08/Main.kt)
- [day09](src/main/kotlin/y2022/day09/Main.kt)
- [day10](src/main/kotlin/y2022/day10/Main.kt)
- [day11](src/main/kotlin/y2022/day11/Main.kt)
- [day12](src/main/kotlin/y2022/day12/Main.kt)
- [day13](src/main/kotlin/y2022/day13/Main.kt)