Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mariot/adventofcode

Advent of Code is an Advent calendar of small programming puzzles for a variety of skill levels that can be solved in any programming language
https://github.com/mariot/adventofcode

Last synced: 17 days ago
JSON representation

Advent of Code is an Advent calendar of small programming puzzles for a variety of skill levels that can be solved in any programming language

Awesome Lists containing this project

README

        

# Advent of Code 🎄

Welcome to my solutions for the [Advent of Code](https://adventofcode.com) challenges! 🚀
Advent of Code is an annual event where participants solve a series of programming puzzles over 25 days in December.

## About

This repository contains my solutions for Advent of Code challenges. Each day's puzzle is divided into two parts, and the difficulty increases as the event progresses. It's a great opportunity to practice problem-solving and explore programming concepts.

## Structure

The repository is organized by year and day.

```
.
├── 2024
│ ├── 01
│ │ ├── input.txt
│ │ ├── main.go
│ │ └── go.mod
│ ├── 02
│ │ ├── input.txt
│ │ ├── part-1.py
│ │ └── part-2.py
│ └── ...
└── ...
```

## Solutions 🎁

| Day | Part 1 | Part 2 |
| --- |---------------------------------|---------------------------------|
| [Day 01](2024/01) | [Go](2024/01/main.go) | [Go](2024/01/main.go) |
| [Day 02](2024/02) | [Python](2024/02/part1/main.py) | [Python](2024/02/part2/main.py) |

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.