My solutions for the 2025 Advent of Code
Find a file
2025-12-17 15:37:32 +01:00
day_1 More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
day_2 More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
day_3 More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
day_4 More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
day_5 More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
day_6 More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
day_7 More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
day_8 Day8: merging the common code into a module 2025-12-17 15:37:32 +01:00
day_template More idiomatic way of importing functions from modules 2025-12-17 14:42:29 +01:00
README.md Simplify folder structure (remove level) 2025-12-09 10:09:56 +01:00

Advent of Code 2025

This repository contains my solutions for the Advent of Code 2025.

Those solutions have been developed as a motive to learn rust.

Setup a day

Create directory from template:

cp -r day_template day_n

Add the example and your puzzle input in files day_n/data/example.txt and day_n/data/data.txt

Implement the solution in day_n/src/part_*.rs

Run

In day_n/:

cargo run