From a3fb4f281808c16c35e1faff2631dfea4dd73bff Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 17 Apr 2024 12:28:39 -0400 Subject: [PATCH] fix test for 2023 day 6 --- AOC.Test/Test2023.cs | 2 +- AOC2015/AOC2015.csproj | 20 +++++++++----------- AOC2016/AOC2016.csproj | 1 - AOC2017/AOC2017.csproj | 15 +++++++-------- AOC2018/AOC2018.csproj | 15 +++++++-------- AOC2019/AOC2019.csproj | 15 +++++++-------- AOC2020/AOC2020.csproj | 18 ++++++++---------- AOC2021/AOC2021.csproj | 20 +++++++++----------- AOC2022/AOC2022.csproj | 18 +++++++++--------- AOC2023/AOC2023.csproj | 18 +++++++++--------- AOC2023/Day06.cs | 3 +++ 11 files changed, 69 insertions(+), 76 deletions(-) diff --git a/AOC.Test/Test2023.cs b/AOC.Test/Test2023.cs index dadb967..06188e5 100644 --- a/AOC.Test/Test2023.cs +++ b/AOC.Test/Test2023.cs @@ -10,7 +10,7 @@ public class Test2023 [DataRow(typeof(Day02), "2476", "54911")] [DataRow(typeof(Day03), "522726", "81721933")] [DataRow(typeof(Day04), "20117", "13768818")] - [DataRow(typeof(Day06), "505494", "2362299")] + [DataRow(typeof(Day06), "505494", "23632299")] public void CheckAllDays(Type dayType, string part1, string part2) => Common.CheckDay(dayType, part1, part2); diff --git a/AOC2015/AOC2015.csproj b/AOC2015/AOC2015.csproj index d3747a0..cc0f279 100644 --- a/AOC2015/AOC2015.csproj +++ b/AOC2015/AOC2015.csproj @@ -14,21 +14,19 @@ - - - - - - + + + + + + - - + - - - + + diff --git a/AOC2016/AOC2016.csproj b/AOC2016/AOC2016.csproj index 9c2ed68..a40ecba 100644 --- a/AOC2016/AOC2016.csproj +++ b/AOC2016/AOC2016.csproj @@ -21,7 +21,6 @@ - diff --git a/AOC2017/AOC2017.csproj b/AOC2017/AOC2017.csproj index 0116aaf..d937a39 100644 --- a/AOC2017/AOC2017.csproj +++ b/AOC2017/AOC2017.csproj @@ -14,16 +14,15 @@ - - - - - - + + + + + + - - + diff --git a/AOC2018/AOC2018.csproj b/AOC2018/AOC2018.csproj index d7f3745..1cc4496 100644 --- a/AOC2018/AOC2018.csproj +++ b/AOC2018/AOC2018.csproj @@ -14,16 +14,15 @@ - - - - - - + + + + + + - - + diff --git a/AOC2019/AOC2019.csproj b/AOC2019/AOC2019.csproj index 63f9250..151a113 100644 --- a/AOC2019/AOC2019.csproj +++ b/AOC2019/AOC2019.csproj @@ -14,16 +14,15 @@ - - - - - - + + + + + + - - + diff --git a/AOC2020/AOC2020.csproj b/AOC2020/AOC2020.csproj index 2dfb7ef..8980427 100644 --- a/AOC2020/AOC2020.csproj +++ b/AOC2020/AOC2020.csproj @@ -14,20 +14,18 @@ - - - - - - + + + + + + - - + - - + diff --git a/AOC2021/AOC2021.csproj b/AOC2021/AOC2021.csproj index e096833..32c8644 100644 --- a/AOC2021/AOC2021.csproj +++ b/AOC2021/AOC2021.csproj @@ -14,21 +14,19 @@ - - - - - - - + + + + + + + - - + - - + diff --git a/AOC2022/AOC2022.csproj b/AOC2022/AOC2022.csproj index 0ac8d6e..bd4e9b9 100644 --- a/AOC2022/AOC2022.csproj +++ b/AOC2022/AOC2022.csproj @@ -14,19 +14,19 @@ - - - - - - - + + + + + + + - + - + diff --git a/AOC2023/AOC2023.csproj b/AOC2023/AOC2023.csproj index 08df866..1af3896 100644 --- a/AOC2023/AOC2023.csproj +++ b/AOC2023/AOC2023.csproj @@ -14,19 +14,19 @@ - - - - - - - + + + + + + + - + - + diff --git a/AOC2023/Day06.cs b/AOC2023/Day06.cs index 904b3cb..d4d8eee 100644 --- a/AOC2023/Day06.cs +++ b/AOC2023/Day06.cs @@ -1,5 +1,8 @@ namespace AOC2023; +/// +/// Day 6 +/// public class Day06() : Day(2023, 6, "Wait For It") { private readonly List<(int time, int distance)> _races = [];