AdventOfCode/README.md

13 lines
528 B
Markdown
Raw Normal View History

# Advent of Code in Java ☕
2023-12-03 19:07:09 +00:00
Quickstart Java template for the [Advent of Code 2023](https://adventofcode.com/2023)
2023-12-03 19:04:14 +00:00
## Usage
2023-12-03 19:04:14 +00:00
1. fork and clone this Repository
2. Install dependencies
- [Maven](https://maven.apache.org/install.html)
- [Java 17](https://www.oracle.com/java/technologies/downloads/#java17)
3. Create file `day1.txt` with puzzle input in `input` folder
2023-12-03 19:04:14 +00:00
4. Run the project with `mvn package && java -cp target/AdventOfCode-1.0-SNAPSHOT.jar de.dhbw.horb.App` 🚀
- or open and run in your favorite IDE