An open API service indexing awesome lists of open source software.

https://github.com/polarfish/advent-of-code-java-template


https://github.com/polarfish/advent-of-code-java-template

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Advent Of Code 2024 in Java

## Instructions

For a next day `N`:

1. Go to `src/main/resources`
2. Copy `Day0_sample.txt` to `DayN_sample.txt` and place puzzle input sample there
3. Copy `Day0.txt` to `DayN.txt` and place your puzzle input there
4. Go to `src/main/java`
5. Copy `Day0.java` to `DayN.java`
6. Solve the puzzle and add the day to [AllDaysRunner](src/main/java/AllDaysRunner.java)
7. Have fun and may the ⭐ be with you!

## Note

- This template is a Maven project with zero dependencies to [keep it simple](https://en.wikipedia.org/wiki/KISS_principle).
- All task input files ([src/main/resources](src/main/resources)) are excluded from the repository with `.gitignore` – we should not post them publicly, as Eric Wastl asks for: [Tweet](https://twitter.com/ericwastl/status/1465805354214830081).