Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```