Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prikhi/advent-of-code-2024
Advent of Code 2024 in Haskell
https://github.com/prikhi/advent-of-code-2024
advent-of-code advent-of-code-2024 advent-of-code-2024-haskell haskell
Last synced: 27 days ago
JSON representation
Advent of Code 2024 in Haskell
- Host: GitHub
- URL: https://github.com/prikhi/advent-of-code-2024
- Owner: prikhi
- License: gpl-3.0
- Created: 2024-12-09T05:04:10.000Z (30 days ago)
- Default Branch: master
- Last Pushed: 2024-12-09T08:42:54.000Z (29 days ago)
- Last Synced: 2024-12-09T09:36:58.659Z (29 days ago)
- Topics: advent-of-code, advent-of-code-2024, advent-of-code-2024-haskell, haskell
- Language: Haskell
- Homepage: https://adventofcode.com/2024
- Size: 59.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2024
To run a solution do something like:
```sh
$ make run day=01
runghc --ghc-arg=-Wall Day01.hs < inputs/day01.txt
Part 1: 1529
Part 2: 1567
```Compile instead for speed gains:
```sh
make compile day=05
```Watch files, recompile, & run:
```sh
make watch day=01
```Make solution & input files for new day:
```sh
make new-day day=09
```## License
GPL-3.0+