From b8c86e212e0fe40cd2f1fe026b720012f3f21982 Mon Sep 17 00:00:00 2001 From: Timo Schneider Date: Thu, 4 Dec 2025 01:54:59 +0100 Subject: [PATCH] renamed solutions --- solution.md => README.md | 0 src/main.rs | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename solution.md => README.md (100%) diff --git a/solution.md b/README.md similarity index 100% rename from solution.md rename to README.md diff --git a/src/main.rs b/src/main.rs index 032afbd..8754d73 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,9 +13,9 @@ fn main() { .write(true) // Open the file for writing .create(true) // Create the file if it doesn't exist .truncate(true) // Clear the file if it already exists - .open("solution.md").expect("Cannot open or create file"); + .open("README.md").expect("Cannot open or create file"); - file.write_all(b"# Advent of code 2025\n```").expect("Cannot write to file"); + file.write_all(b"# Advent of Code 2025\n```").expect("Cannot write to file"); let exercises: Vec<(&str, fn () -> u64)> = vec![ ("day01:A", part01a::solve),