mirror of
https://github.com/farcasclaudiu/advent_of_code_2022.git
synced 2026-06-22 05:01:20 +03:00
17 lines
391 B
C#
17 lines
391 B
C#
namespace day07;
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var inputFile = "input.txt";
|
|
|
|
var problem = new Problem();
|
|
|
|
problem.ResolvePart1(inputFile);
|
|
System.Console.WriteLine($"Result1: {problem.Result1}");
|
|
|
|
problem.ResolvePart2(inputFile);
|
|
System.Console.WriteLine($"Result2: {problem.Result2}");
|
|
}
|
|
}
|