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