Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaronreidsmith/advent-of-code
My solutions to the Advent of Code
https://github.com/aaronreidsmith/advent-of-code
advent-of-code scala
Last synced: 2 months ago
JSON representation
My solutions to the Advent of Code
- Host: GitHub
- URL: https://github.com/aaronreidsmith/advent-of-code
- Owner: aaronreidsmith
- Created: 2020-12-01T13:30:07.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T15:50:35.000Z (12 months ago)
- Last Synced: 2024-05-02T04:05:18.256Z (8 months ago)
- Topics: advent-of-code, scala
- Language: Scala
- Homepage:
- Size: 5.12 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
My solutions to the [Advent of Code](https://adventofcode.com/) in Scala.
Solutions are stored in the following directory structure:
```
src/main/scala/io/github/aaronreidsmith/
```Inputs are stored in the following directory structure:
```
src/main/resources//.txt
```Input files are encrypted in accordance with the [AoC creator's wishes](https://mobile.twitter.com/ericwastl/status/1465805354214830081),
so if you want to use this for yourself, you will have to provide your own input.## Usage
### Run all solutions
```
sbt run
```### Run all solutions for a given year
```
sbt "run --year "
```### Run all solutions for a given day across all years
```
sbt "run --day "
```### Run a specific solution
```
sbt "run --year --day "
```