Problems solutions of https://adventofcode.com in Java.
Execute this command to basic configuration:
make startYou can generate the basic classes to resolve a problem with that command:
make new_day day=XXIf you generate a wrong day, you can execute:
make remove_day day=XXYou can use your favourite IDE or this commands:
For one test:
make test day=XXFor all tests:
make all_testsIt is a good practice format your code because is less common generate conflict in the same classes. You can format your code with prettier with this command:
make formatAnd check if others pass prettier in their code.
make check_formatThere are git hooks with those two command in the commit and push actions.