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
- Host: GitHub
- URL: https://github.com/polarfish/advent-of-code-java-template
- Owner: polarfish
- License: mit
- Created: 2022-11-30T10:58:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-04T14:39:01.000Z (about 1 year ago)
- Last Synced: 2024-12-04T15:34:57.519Z (about 1 year ago)
- Language: Java
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).