37 lines
648 B
C#
37 lines
648 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AdventOfCode2021
|
|||
|
{
|
|||
|
internal class days
|
|||
|
{
|
|||
|
string[] input;
|
|||
|
|
|||
|
public days(string day)
|
|||
|
{
|
|||
|
input = getInput(day);
|
|||
|
part1();
|
|||
|
part2();
|
|||
|
}
|
|||
|
public string[] getInput(string day)
|
|||
|
{
|
|||
|
string filepath = $"../../../inputs/{day}.txt";
|
|||
|
string[] file = File.ReadAllLines(filepath);
|
|||
|
|
|||
|
return file;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public void part1()
|
|||
|
{
|
|||
|
}
|
|||
|
public void part2()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|