From 871f9e7bf58d44d9878b0b9c9f8009b84e84d1cb Mon Sep 17 00:00:00 2001 From: James Plante Date: Sun, 3 Dec 2023 23:22:17 -0500 Subject: [PATCH] Minor cleanup --- day3/Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/day3/Program.cs b/day3/Program.cs index fc3ab5c..2758281 100644 --- a/day3/Program.cs +++ b/day3/Program.cs @@ -3,5 +3,4 @@ var fileContents = File.ReadAllText(Path.GetFullPath("input.txt")); var day3 = new Day3(fileContents); Console.WriteLine($"The answer to Part 1 is {day3.PartOne()}"); -Console.WriteLine($"The answer to Part 2 is {day3.PartTwo()}"); -Console.WriteLine("Hello World"); \ No newline at end of file +Console.WriteLine($"The answer to Part 2 is {day3.PartTwo()}"); \ No newline at end of file