Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scordio/advent-of-code
My Java solutions for Advent of Code
https://github.com/scordio/advent-of-code
advent-of-code
Last synced: 5 days ago
JSON representation
My Java solutions for Advent of Code
- Host: GitHub
- URL: https://github.com/scordio/advent-of-code
- Owner: scordio
- Created: 2023-01-02T08:22:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-26T14:05:01.000Z (about 1 month ago)
- Last Synced: 2024-12-26T15:16:58.938Z (about 1 month ago)
- Topics: advent-of-code
- Language: Java
- Homepage: https://adventofcode.com
- Size: 289 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
[Advent of Code](https://adventofcode.com/) is my opportunity to sharpen my knowledge of old and new JDK features.
This project contains my solutions, where I follow a few ground rules:
* Solutions are based on Java 24
* Solutions are implemented with JDK features only, including preview features, but no third-party library is allowed
* Solutions are executed as JUnit [Parameterized Tests](https://junit.org/junit5/docs/current/user-guide/#writing-tests-parameterized-tests)## Execution
Via Maven:
```
./mvnw test
```or via [your favorite IDE](https://junit.org/junit5/docs/current/user-guide/#running-tests-ide).