https://github.com/prikhi/advent-of-code-2023
Advent of Code 2023 in Haskell
https://github.com/prikhi/advent-of-code-2023
advent-of-code advent-of-code-2023 advent-of-code-2023-haskell haskell
Last synced: 3 months ago
JSON representation
Advent of Code 2023 in Haskell
- Host: GitHub
- URL: https://github.com/prikhi/advent-of-code-2023
- Owner: prikhi
- License: gpl-3.0
- Created: 2023-12-01T09:20:51.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-13T04:52:23.000Z (over 1 year ago)
- Last Synced: 2025-01-17T01:36:31.058Z (5 months ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-2023-haskell, haskell
- Language: Haskell
- Homepage: https://adventofcode.com/2023/
- Size: 118 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023
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+