Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.1 KB

README.md

File metadata and controls

40 lines (24 loc) · 1.1 KB

Advent Of Code 2018

Kotlin tests and solutions for the 2018 puzzles.

Other years' solutions:

Objectives

  • Focus on producing communicative, idiomatic, and well-structured solutions over high-performance solutions;
  • Write high-quality tests using one of the popular Kotlin testing libraries, KotlinTest. Test cases are typically inspired by the examples presented as part of each puzzle.

Instructions

Running Tests

All days:

./gradlew test

Specific day, e.g. 14:

./gradlew day14:test

Verifying Solutions

All days:

./gradlew run

Specific day, e.g. 14:

./gradlew day14:run