From 55674972e7af4cda0b37ee1978c8e2adaac221c4 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 12 Nov 2022 14:06:27 -0500 Subject: [PATCH] missed puzzle name for 2015 day 4 --- AOC2015/Day04.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AOC2015/Day04.cs b/AOC2015/Day04.cs index 2fa2cdd..08070e9 100644 --- a/AOC2015/Day04.cs +++ b/AOC2015/Day04.cs @@ -9,7 +9,7 @@ public sealed class Day04 : Day { private readonly string _key; - public Day04() : base(2015, 4, "Puzzle Name") + public Day04() : base(2015, 4, "The Ideal Stocking Stuffer") { _key = Input.First(); }