Releases: Zaneris/AdventOfCodeSupport
Releases · Zaneris/AdventOfCodeSupport
2.5.1
- Add Part1Sample and Part2Sample, these utilize new files Sample01.txt and optional Sample01P2.txt in the Inputs folder and throw if the check fails, check ReadMe for more information
- Span2D CRLF fix
- Fixed InternalOnLoad not re-running after Part1/2Sample
2.5.0
- Add Part1Sample and Part2Sample, these utilize new files Sample01.txt and optional Sample01P2.txt in the Inputs folder and throw if the check fails, check ReadMe for more information
- Span2D CRLF fix
2.4.3
2.4.2
- Inputs now download to correct directory when running from terminal
- https://www.nuget.org/packages/AdventOfCodeSupport/2.4.2
2.4.1
- Added Input.Bytes
- Added Input.Span
- Added Input.Span2D
- https://www.nuget.org/packages/AdventOfCodeSupport/2.4.1
2.3.3
2.3.2
Fixed issue with loading input files
https://www.nuget.org/packages/AdventOfCodeSupport/2.3.2
2.3.1
- Fixed benchmarking
https://www.nuget.org/packages/AdventOfCodeSupport/2.3.1
2.3.0
Added Part1Answer and Part2Answer for testing (thanks Pobiega)
https://www.nuget.org/packages/AdventOfCodeSupport/2.3.0
protected override void InternalPart1()
{
...
return 42; // Can be obtained with Part1Answer.
}
[Fact]
public void TestDay01_Returned42_Equals42()
{
var day = _solutions.GetDay(2023, 1);
Assert.Equal("42", day.Part1Answer);
}
2.2.0
Added ChatGPT integration, automatically looks for problems on an incorrect submission to AoC.
https://www.nuget.org/packages/AdventOfCodeSupport/2.2.0