Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/edricchan03/advent-of-code
- Owner: EdricChan03
- Created: 2021-12-01T15:04:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T14:30:48.000Z (7 months ago)
- Last Synced: 2024-05-28T18:52:55.421Z (7 months ago)
- Topics: advent-of-code, advent-of-code-2021, aoc-2021-in-kotlin, aoc-2023-in-kotlin, kotlin
- Language: Kotlin
- Homepage:
- Size: 550 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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/).