https://github.com/marcusbfs/haskell-aoc2023
My solutions in Haskell for the Advent of Code 2023
https://github.com/marcusbfs/haskell-aoc2023
Last synced: 2 months ago
JSON representation
My solutions in Haskell for the Advent of Code 2023
- Host: GitHub
- URL: https://github.com/marcusbfs/haskell-aoc2023
- Owner: marcusbfs
- License: mit
- Created: 2023-12-08T18:29:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-15T20:42:46.000Z (over 1 year ago)
- Last Synced: 2025-01-23T01:34:03.563Z (4 months ago)
- Language: Haskell
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2023 Solutions in Haskell
This project aims to provide a somehow clean and efficient (sometimes!) solutions to the programming puzzles presented during the Advent of Code event.
## Usage
1. Place your input files in the `input` folder. Ensure that the file names follow the specified pattern.
2. Run the solutions using the following command:
```bash
cabal run
```This will execute the main program and provide the solutions for each Advent of Code puzzle.
## Folder Structure
- `src/`: Contains Haskell source files for each day's solution.
- `input/`: Place your input files here.
- `app/`: Contains the main program.