diff --git a/README.md b/README.md index d51736c..af98249 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Some cool repositories that add their own abstractions/customizations on top of Methods that accept an instance of `SolverConfiguration` were deprecated in `v2` and removed in `v3`. -They have been replaced by methods that accept `Action` overrides. +They have been replaced by methods that accept `Action`. `v1`: @@ -178,7 +178,7 @@ public class Day_01 : BaseDay ## Tips -Your problem classes are instantiated only once, so parsing the input file (`InputFilePath`) in your class constructor allows you to: +Your problem/day classes are instantiated only once, so parsing the input file (`InputFilePath`) in your class constructor allows you to: - Avoid executing parsing logic twice per problem. - Measure more accurately your part 1 and part 2 solutions performance\*. diff --git a/src/AoCHelper/SolvingException.cs b/src/AoCHelper/SolvingException.cs index 47dffbc..5690eed 100644 --- a/src/AoCHelper/SolvingException.cs +++ b/src/AoCHelper/SolvingException.cs @@ -1,6 +1,4 @@ -using System.Runtime.Serialization; - -namespace AoCHelper +namespace AoCHelper { public class SolvingException : Exception {