Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mathieu-keller/advent-of-code
my implementations of Advent of Code
https://github.com/mathieu-keller/advent-of-code
Last synced: 2 days ago
JSON representation
my implementations of Advent of Code
- Host: GitHub
- URL: https://github.com/mathieu-keller/advent-of-code
- Owner: mathieu-keller
- Created: 2024-11-09T13:02:09.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-01T12:42:37.000Z (about 1 month ago)
- Last Synced: 2024-12-01T13:38:09.175Z (about 1 month ago)
- Language: Go
- Size: 276 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code Solutions
Welcome to my collection of solutions for the [Advent of Code](https://adventofcode.com/) challenges! Each year, I tackle the challenges using a mix of programming languages, showcasing different approaches to problem-solving.
## Repository Structure
This repository is organized by year, with each day’s challenge in its respective folder. Here’s the structure:
```
year/{day}:{challenge name}/{language}/
```- **year**: The Advent of Code year (e.g., `2023`).
- **{day}:{challenge name}**: The day of the challenge and the challenge title (e.g., `01:Calorie Counting`).
- **{language}**: The programming language used for that specific solution (e.g., `Java`, `Typescript`, `Go`).Each folder contains:
- Solution files in the specified language.## Example Structure
Here's an example structure:
```
2015/
├── Day 1: Not Quite Lisp/
│ ├── Java/
│ │ └── solution.java
│ └─── Rust/
│ │ └── solution.rs
└── Day 2: I Was Told There Would Be No Math/
├── Typescript/
│ └── solution.ts
└── Go/
└── solution.go
```## Languages Used
This repository showcases a variety of programming languages, including:
- Java
- Typescript
- Rust
- Go## Challenge Descriptions
Each challenge folder (`year/{day}:{challenge name}`).