Skip to content

Releases: Zaneris/AdventOfCodeSupport

2.5.1

11 Dec 17:44
c0ef7c3
Compare
Choose a tag to compare
  • 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

https://www.nuget.org/packages/AdventOfCodeSupport/2.5.1

2.5.0

11 Dec 16:52
befdda6
Compare
Choose a tag to compare
  • 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

https://www.nuget.org/packages/AdventOfCodeSupport/2.5.0

2.4.3

27 Nov 17:29
f7cc21c
Compare
Choose a tag to compare

2.4.2

06 Dec 14:03
6ca801e
Compare
Choose a tag to compare

2.4.1

04 Dec 09:08
0c28d4d
Compare
Choose a tag to compare

2.3.3

02 Dec 12:36
d797c01
Compare
Choose a tag to compare

2.3.2

02 Dec 03:10
8909842
Compare
Choose a tag to compare

2.3.1

01 Dec 14:15
fdc13a8
Compare
Choose a tag to compare

2.3.0

30 Nov 12:47
47fbc0d
Compare
Choose a tag to compare

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

29 Nov 15:25
a2774dd
Compare
Choose a tag to compare

Added ChatGPT integration, automatically looks for problems on an incorrect submission to AoC.
https://www.nuget.org/packages/AdventOfCodeSupport/2.2.0