Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ef55/advent-of-code
My solutions to advent of code 2022
https://github.com/ef55/advent-of-code
Last synced: 10 days ago
JSON representation
My solutions to advent of code 2022
- Host: GitHub
- URL: https://github.com/ef55/advent-of-code
- Owner: Ef55
- Created: 2022-12-08T21:58:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-23T15:23:09.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T21:43:35.312Z (about 1 month ago)
- Language: Scala
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of code 2022
## Kézako?
More info [here](https://adventofcode.com/2022/about).## Structure
Most (if not all) solutions use the same [skeleton](src/Template.sc).
To summarize it:
- An input parsing function;
- One function for each (of the two) questions;
- Some assertions testing the provided test case(s) (inputs are [here](tests));
- Some prints for the solution (inputs are [here](inputs))## How to run
Written in Scala 3, built with [scala-cli](https://scala-cli.virtuslab.org/).
```
scala-cli run src/DayXX.sc
```