Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 1 day 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-12T23:01:36.000Z (about 2 years ago)
- Last Synced: 2024-11-04T11:48:01.385Z (about 2 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
```