From fc0233517e1e84b7a4874d4b24f5b235139ba0a2 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Mon, 4 Dec 2023 17:41:39 +0000 Subject: [PATCH] feat(2023-03): Add day 3 correct answer --- AdventOfCode/AOC.Tests/Y2023/Day03.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AdventOfCode/AOC.Tests/Y2023/Day03.cs b/AdventOfCode/AOC.Tests/Y2023/Day03.cs index 3e6d12f..2a6a41f 100644 --- a/AdventOfCode/AOC.Tests/Y2023/Day03.cs +++ b/AdventOfCode/AOC.Tests/Y2023/Day03.cs @@ -418,7 +418,7 @@ public class Day03 ......755. ...$.*.... .664.598..", 467835)] - [TestCase(null, 1783)] // The actual answer + [TestCase(null, 81997870)] // The actual answer public void Part2(string input, int? expected) { string[] lines = input != null ? input.Split("\n") : realData;