Skip to content

Commit

Permalink
solve second puzzle
Browse files Browse the repository at this point in the history
  • Loading branch information
rpgrca committed Dec 27, 2024
1 parent d0cbbf9 commit a88e52f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions 2024/Day25/Day25.UnitTests/CodeChronicleMust.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,11 @@ public void SolveFirstSampleCorrectly()
var sut = new CodeChronicle(SAMPLE_INPUT);
Assert.Equal(3, sut.UniqueWorkingPairs);
}

[Fact]
public void SolveFirstPuzzleCorrectly()
{
var sut = new CodeChronicle(PUZZLE_INPUT);
Assert.Equal(2835, sut.UniqueWorkingPairs);
}
}

0 comments on commit a88e52f

Please sign in to comment.