Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 1.28 KB

README.md

File metadata and controls

21 lines (17 loc) · 1.28 KB

Day Template

Usage

Copy the contents of this package to a new "daynn" package, then get to work modifying the TodayTest.kt as needed.

Run the tests in the IDE, or with commands like:

# Run the Part 1 solutions (both sample and real) for day01
$ ./gradlew test --tests="day01**Part 1**"
# Run the Part 1 Sample solution for day01
$ ./gradlew test --tests="day01**Part 1**Sample**"
# Run the Part 2 Real solution for day02
$ ./gradlew test --tests="day02**Part 2**Real**"

Put a Bow on It

View the source of the Advent of Code page once you solve the puzzles, convert the source to markdown using something like CodeBeautify HTML-to-Markdown, then replace this README's contents with that markdown. This makes it easy to go back and review your solutions in the context of the actual problem. Some of these can be pretty obscure...

When you commit your solution, be careful to not commit your input.txt. Everyone's input is supposed to be different, but the author requests that we don't post our input. The .gitignore should take care of that for you, but doesn't hurt to double-check.