feat: solve day 7 part 1 and part 2

This commit is contained in:
Stevan Freeborn
2024-12-07 19:59:44 -06:00
parent 7f4f514b8c
commit 8f7f617182
7 changed files with 268 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace BridgeRepair;
class PuzzleParser
{
public List<Equation> Parse(string[] input)
{
return input.Select(s => s.ToEquation()).ToList();
}
}