Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drewolson/aoc-hs
Advent of Code in Haskell
https://github.com/drewolson/aoc-hs
Last synced: 2 months ago
JSON representation
Advent of Code in Haskell
- Host: GitHub
- URL: https://github.com/drewolson/aoc-hs
- Owner: drewolson
- License: other
- Created: 2021-11-28T01:33:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-30T15:11:04.000Z (about 1 year ago)
- Last Synced: 2024-05-09T21:50:12.321Z (8 months ago)
- Language: Haskell
- Homepage:
- Size: 345 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code
[![test](https://github.com/drewolson/aoc-hs/actions/workflows/test.yml/badge.svg)](https://github.com/drewolson/aoc-hs/actions/workflows/test.yml)
## Build
```
stack build
```## Run Solution
```
stack run -- --help
stack run -- --day 1 --part 1
stack run -- -d 1 -p 1
```## Test
```
stack test
```## Format
```
make format-check
make format
```