Skip to content

Commit dc36ee1

Browse files
committed
q
1 parent 6192b63 commit dc36ee1

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

Lib/Runner.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ public static SolverResult RunSolver(Solver solver) {
109109
var indent = " ";
110110
Write(ConsoleColor.White, $"{indent}{solver.DayName()}: {solver.GetName()}");
111111
WriteLine();
112-
var dir = workingDir;
113112
var file = Path.Combine(workingDir, "input.in");
114113
var refoutFile = file.Replace(".in", ".refout");
115114
var refout = File.Exists(refoutFile) ? File.ReadAllLines(refoutFile) : null;

Lib/SlocChart.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using Microsoft.VisualBasic;
54

65
namespace AdventOfCode;
76

@@ -21,7 +20,6 @@ public static void Show(int year, List<(int day, int sloc)> slocs) {
2120
Console.WriteLine($" {year } in code lines total: {total} max: {max} min: {min}");
2221
Console.WriteLine("");
2322

24-
2523
var columns = new List<List<ColoredString>>();
2624

2725
var icol = 0;

0 commit comments

Comments
 (0)