23 lines
626 B
C#
23 lines
626 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace AdventOfCode2018
|
|
{
|
|
internal class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
|
|
// Resolve Day01
|
|
Day01 day01 = new Day01();
|
|
string[] linesDay01 = File.ReadAllLines("inputs/Day01.txt");
|
|
string resultDay01 = day01.ResolveDay01(linesDay01);
|
|
Console.WriteLine("Day01 Result: {0}", resultDay01);
|
|
string resultDay01Part2 = day01.ResolveDay01_Part2(linesDay01);
|
|
Console.WriteLine("Day01_Part2 Result: {0}", resultDay01Part2);
|
|
|
|
Console.Read();
|
|
}
|
|
}
|
|
}
|