- Add a class for the day you are completing named 'Day<day_number>'
- Make sure class implements Day interface
- Add puzzle input as a text file in resources directory named '<day_number>.txt'
- Add a private data field of chosen type
- Implement processData, part1 and part2 methods of class
- Add a constructor that runs processData method given an input file name
- Add tests
mvn clean install
java -cp target/classes dev.kmunton.Runner <day_number>
- day_number corresponds to the particular day in December that you want to run puzzles for
mvn test
run all testsmvn test -Dtest=<test_class_name>
run specific test class