15 lines
463 B
C#
15 lines
463 B
C#
using DayOne;
|
|
using DayTwo;
|
|
|
|
Console.WriteLine("Hello, World!");
|
|
|
|
//var calibrator = new CalibratorReader(@"RandomFiles\calibrations.txt");
|
|
//var calibrationFound = calibrator.ObtainCalibrationValue();
|
|
|
|
//Console.WriteLine($"The calibration found was {calibrationFound}");
|
|
|
|
var gameMaster = new CubeGameMaster(@"RandomFiles\cubes.txt");
|
|
|
|
var sumOfIds = gameMaster.ObtainSumOfValidGames();
|
|
Console.WriteLine($"Sum of the Ids is {sumOfIds}");
|
|
Console.ReadLine(); |