Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jrp2014/aoc2023
Advent of Code 2023 in Haskell
https://github.com/jrp2014/aoc2023
Last synced: 1 day ago
JSON representation
Advent of Code 2023 in Haskell
- Host: GitHub
- URL: https://github.com/jrp2014/aoc2023
- Owner: jrp2014
- License: mit
- Created: 2023-12-01T22:39:41.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-05T23:43:42.000Z (10 months ago)
- Last Synced: 2024-03-19T20:10:35.691Z (8 months ago)
- Language: Haskell
- Size: 115 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AoC2023
Advent of Code 2023 in HaskellMost, if not all of these solutions should be able to run from `ghci` without compiling. Eg,
```
jrp@ AoC2023 % cd Day01
jrp@ Day01 % ghci -Wall Day01.hs
GHCi, version 9.4.7: https://www.haskell.org/ghc/ :? for help
Loaded GHCi configuration from /Users/jrp/.ghci
[1 of 1] Compiling Day01 ( Day01.hs, interpreted )
Ok, one module loaded.
(0.02 secs,)
ghci> main
Part1:
54450
Part2:
54265
(0.02 secs, 11,050,072 bytes)
ghci> :q
Leaving GHCi.
jrp@ Day01 %
```