Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexdovzhanyn/advent-of-code
My solutions for Advent of Code challenges
https://github.com/alexdovzhanyn/advent-of-code
advent-of-code advent-of-code-2023
Last synced: 9 days ago
JSON representation
My solutions for Advent of Code challenges
- Host: GitHub
- URL: https://github.com/alexdovzhanyn/advent-of-code
- Owner: alexdovzhanyn
- Created: 2024-07-24T04:51:34.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-08-02T23:59:18.000Z (3 months ago)
- Last Synced: 2024-08-03T23:44:04.146Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2023
- Language: Haskell
- Homepage:
- Size: 727 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code Solutions
Welcome to my solutions for the [Advent of Code](https://adventofcode.com/) challenge! This repository contains my implementations of the challenges for each year, organized by directory. Each year, I choose a different programming language to solve the puzzles.
## Years
- [2023 - Haskell](./2023/)
## Directory Structure
Each year directory contains the solutions for that year in the chosen programming language. Below is the structure for the 2023 solutions in Haskell:
```lua
2023/
├── app/
│ └── Main.hs -- Entry point for running the solutions
├── src/
│ ├── day1/ -- Directory for Day 1 solution
│ │ ├── SolutionPart1.hs
│ │ ├── SolutionPart2.hs
│ └── day2/ -- Directory for Day 2 solution
│ ├── SolutionPart1.hs
│ ├── SolutionPart2.hs
│ └── ... -- Other days
├── inputs/
│ ├── day1.txt -- Input file for Day 1
│ ├── day2.txt -- Input file for Day 2
│ └── ... -- Input files for other days
```