25 lines
345 B
C#
25 lines
345 B
C#
using System;
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
namespace AdventOfCode2020
|
|
{
|
|
public class Day11 : IDay
|
|
{
|
|
public string ResolvePart1(string[] inputs)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string ResolvePart2(string[] inputs)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|