https://github.com/douglascamata/aoc_2022
My solutions to the Advent of Code 2022 using Crystal.
https://github.com/douglascamata/aoc_2022
adventofcode adventofcode2022 aoc crystal
Last synced: 8 months ago
JSON representation
My solutions to the Advent of Code 2022 using Crystal.
- Host: GitHub
- URL: https://github.com/douglascamata/aoc_2022
- Owner: douglascamata
- License: mit
- Created: 2022-12-04T12:08:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-12T23:01:36.000Z (almost 3 years ago)
- Last Synced: 2025-02-14T06:53:00.303Z (10 months ago)
- Topics: adventofcode, adventofcode2022, aoc, crystal
- Language: Crystal
- Homepage:
- Size: 473 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aoc2022
These are my solutions to the [Advent of Code 2022](https://adventofcode.com/2022)
using Crystal.
## Usage
Run all solutions:
```sh
crystal src/main.cr
```
Run a given day:
```sh
crystal src/main.cr
```
### Scaffold files for a given day
It will create the implementation class, its spec, and an empty input file.
```sh
crystal tools/day_gen.cr
```