Example #1
0
 public void GlobalSetup()
 {
     this.text  = File.ReadAllText("Inputs/part1.txt");
     part1Value = Part1Solver.Solve(this.text);
 }
 public void Part1()
 {
     Part1Solver.Solve(this.text);
 }
Example #3
0
 public void Part1()
 {
     ProgramShell.RunSilent(new Part1Solver(this.lines, (3, 1)));
 }