Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mariot/adventofcode
- Owner: mariot
- License: mit
- Created: 2024-12-02T23:12:43.000Z (24 days ago)
- Default Branch: main
- Last Pushed: 2024-12-02T23:28:12.000Z (24 days ago)
- Last Synced: 2024-12-03T00:26:10.997Z (24 days ago)
- Language: Go
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.