Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/edricchan03/advent-of-code

Advent Of Code solutions written in Kotlin
https://github.com/edricchan03/advent-of-code

advent-of-code advent-of-code-2021 aoc-2021-in-kotlin aoc-2023-in-kotlin kotlin

Last synced: about 1 month ago
JSON representation

Advent Of Code solutions written in Kotlin

Awesome Lists containing this project

README

        

# Advent Of Code

The source code containing solutions for each puzzle in
[Advent Of Code](https://adventofcode.com), written in Kotlin.

## Code Structure

Hugely inspired by
[Edgars Supe's GitHub repository](https://github.com/edgars-supe/advent-of-code),
it leverages a similar project structure.

### Running a puzzle

Each file having a class that extends from
[`Puzzle`](solutions/src/main/kotlin/com/edricchan/aoc/Puzzle.kt) should
have a top-level `main` function defined as well, which can then
be run from within an IDE such as
[IntelliJ IDEA](https://www.jetbrains.com/idea/).