From f72e5c020397b5c0c810a5b2608305dec9d398f9 Mon Sep 17 00:00:00 2001 From: Bearmine Date: Sat, 31 May 2025 09:20:54 -0500 Subject: [PATCH] Add comment to top of day 5 and 6 --- day_05/src/main.rs | 4 ++++ day_06/src/main.rs | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/day_05/src/main.rs b/day_05/src/main.rs index 6329106..186b2f7 100644 --- a/day_05/src/main.rs +++ b/day_05/src/main.rs @@ -1,3 +1,7 @@ +// https://adventofcode.com/2024/day/5 +// +// Run command: cargo run ./input.txt + use std::{ collections::{HashMap, HashSet}, env, diff --git a/day_06/src/main.rs b/day_06/src/main.rs index e706463..7043793 100644 --- a/day_06/src/main.rs +++ b/day_06/src/main.rs @@ -1,3 +1,7 @@ +// https://adventofcode.com/2024/day/6 +// +// Run command: cargo run ./input.txt + use std::{ env, error::Error,