Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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).