11 lines
209 B
C#
11 lines
209 B
C#
namespace _2024;
|
|
|
|
public class Day17 : ISolution
|
|
{
|
|
public void Run()
|
|
{
|
|
var _ = File.ReadAllText("input/17");
|
|
Console.WriteLine("The solution for day 17 is not implmented yet");
|
|
}
|
|
}
|