Skip to content

outadoc/adventofcode

Repository files navigation

outadoc's Advent of Code

JVM Tests Linux Tests

Personal Advent of Code solutions written in Kotlin, with Kotlin/Multiplatform tooling.

Obviously these aren't necessarily the optimal solutions, but they're mine. Users beware.

Where's the code?

Mostly in the aoc-<year> modules.

The solutions are Kotlin classes that implement the Day abstract class. They expose two steps, and their result is checked from the unit tests (there's no other entry point).

Running the tests

# Tests for all platforms
./gradlew allTests

# Just for JVM
./gradlew jvmTest