https://github.com/rust-dd/aoc-2024
This repository is dedicated to solving the Advent of Code 2024 puzzles using the Rust programming language
https://github.com/rust-dd/aoc-2024
advent-of-code advent-of-code-2024 advent-of-code-2024-rust rust rust-lang
Last synced: 5 months ago
JSON representation
This repository is dedicated to solving the Advent of Code 2024 puzzles using the Rust programming language
- Host: GitHub
- URL: https://github.com/rust-dd/aoc-2024
- Owner: rust-dd
- Created: 2024-12-01T11:29:24.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-27T10:06:43.000Z (6 months ago)
- Last Synced: 2024-12-27T10:28:38.696Z (6 months ago)
- Topics: advent-of-code, advent-of-code-2024, advent-of-code-2024-rust, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 168 KB
- Stars: 17
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- really-awesome-advent-of-code - rust-dd/aoc-2024 - commit/rust-dd/aoc-2024/main) (🎄 2024 AoC Solutions / Solutions)
README
# 🎄 Advent of Code 2024 Solutions in Rust
Welcome to our **Advent of Code 2024 (in Rust)** repository! 🎅✨ This project provides **daily solutions** for the [Advent of Code](https://adventofcode.com/) challenges, implemented in the Rust programming language.
We update the repository **every day** with solutions for the latest puzzles. Whether you're learning Rust, solving puzzles, or looking for inspiration, we hope this repository proves useful to you.
## 📁 Directory Structure
```plaintext
📂 src/
├── day01.rs # Solution for Day 1
├── day02.rs # Solution for Day 2
├── ...
📂 inputs/
├── day01.txt # Input data for Day 1
├── day02.txt # Input data for Day 2
├── ...
```- src/: Contains the Rust solution files for each day.
- inputs/: Stores the input data used for the puzzles.## 🚀 Usage
1. Clone the repository:
```bash
git clone https://github.com/rust-dd/aoc-2024.git
cd aoc-2024
```2. Update the repository daily to get the latest solutions:
```bash
git pull
```## 🌟 Acknowledgements
- Advent of Code by Eric Wastl for the incredible challenges.
- The Rust community for their tools and support.---
🎉 Happy Coding and enjoy solving puzzles with Rust! 🎄